| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.core.model.BaseBean;
- import io.swagger.annotations.ApiModelProperty;
- import java.util.List;
- /**
- * Created by 61618 on 2019/4/17.
- */
- public class PersAllInfoDto extends BaseBean {
- @ApiModelProperty("组id")
- private String id;
- @ApiModelProperty("组名称(修改组名称是传此参数)")
- private String nm;
- private String pid;
- @ApiModelProperty("当前用户id")
- private String persid;
- @ApiModelProperty("人员list(不添加时传空数组)")
- private List<PersAllDto> persAllDtoList;
- @ApiModelProperty("对象list")
- private List<PersAllObjDto> persAllObjDtoList;
- @ApiModelProperty("分工区域list")
- private List<PersAllAreaDto> persAllAreaDtoList;
- private String sttm;
- private String entm;
- private String inspYear;
- private String inspMnth;
- private String ptype;
- private String intm;
- private String inspTask;
- private String psn;
- private String chkName;
- private String chkType;
- private String isInsert;
- public String getIsInsert() {
- return isInsert;
- }
- public void setIsInsert(String isInsert) {
- this.isInsert = isInsert;
- }
- public String getChkName() {
- return chkName;
- }
- public void setChkName(String chkName) {
- this.chkName = chkName;
- }
- public String getChkType() {
- return chkType;
- }
- public void setChkType(String chkType) {
- this.chkType = chkType;
- }
- public String getIntm() {
- return intm;
- }
- public void setIntm(String intm) {
- this.intm = intm;
- }
- public String getInspTask() {
- return inspTask;
- }
- public void setInspTask(String inspTask) {
- this.inspTask = inspTask;
- }
- public String getPsn() {
- return psn;
- }
- public void setPsn(String psn) {
- this.psn = psn;
- }
- public String getSttm() {
- return sttm;
- }
- public void setSttm(String sttm) {
- this.sttm = sttm;
- }
- public String getEntm() {
- return entm;
- }
- public void setEntm(String entm) {
- this.entm = entm;
- }
- public String getPtype() {
- return ptype;
- }
- public void setPtype(String ptype) {
- this.ptype = ptype;
- }
- public String getInspYear() {
- return inspYear;
- }
- public void setInspYear(String inspYear) {
- this.inspYear = inspYear;
- }
- public String getInspMnth() {
- return inspMnth;
- }
- public void setInspMnth(String inspMnth) {
- this.inspMnth = inspMnth;
- }
- public String getPersid() {
- return persid;
- }
- public void setPersid(String persid) {
- this.persid = persid;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public String getPid() {
- return pid;
- }
- public void setPid(String pid) {
- this.pid = pid;
- }
- public List<PersAllDto> getPersAllDtoList() {
- return persAllDtoList;
- }
- public void setPersAllDtoList(List<PersAllDto> persAllDtoList) {
- this.persAllDtoList = persAllDtoList;
- }
- public List<PersAllObjDto> getPersAllObjDtoList() {
- return persAllObjDtoList;
- }
- public void setPersAllObjDtoList(List<PersAllObjDto> persAllObjDtoList) {
- this.persAllObjDtoList = persAllObjDtoList;
- }
- public List<PersAllAreaDto> getPersAllAreaDtoList() {
- return persAllAreaDtoList;
- }
- public void setPersAllAreaDtoList(List<PersAllAreaDto> persAllAreaDtoList) {
- this.persAllAreaDtoList = persAllAreaDtoList;
- }
- @Override
- public String toString() {
- return "PersAllInfoDto{" +
- "id='" + id + '\'' +
- ", nm='" + nm + '\'' +
- ", pid='" + pid + '\'' +
- ", persid='" + persid + '\'' +
- ", persAllDtoList=" + persAllDtoList +
- ", persAllObjDtoList=" + persAllObjDtoList +
- ", persAllAreaDtoList=" + persAllAreaDtoList +
- ", sttm='" + sttm + '\'' +
- ", entm='" + entm + '\'' +
- ", inspYear='" + inspYear + '\'' +
- ", inspMnth='" + inspMnth + '\'' +
- ", ptype='" + ptype + '\'' +
- ", intm='" + intm + '\'' +
- ", inspTask='" + inspTask + '\'' +
- ", psn='" + psn + '\'' +
- ", chkName='" + chkName + '\'' +
- ", chkType='" + chkType + '\'' +
- '}';
- }
- }
|