You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
857 B
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.rehome.sgbaxj.bean;
/**
* Create By HuangWenFei
* 创建日期2023-07-25 14:38
* 描述:免检管理上传请求数据
*/
import java.util.List;
public class MjRequestInfo {
private String action;
private String bz;
private String scr;
private List<MjList.DataBean> data;
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
public String getBz() {
return bz;
}
public void setBz(String bz) {
this.bz = bz;
}
public String getScr() {
return scr;
}
public void setScr(String scr) {
this.scr = scr;
}
public List<MjList.DataBean> getData() {
return data;
}
public void setData(List<MjList.DataBean> data) {
this.data = data;
}
}