| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- import java.util.List;
- /**
- * entity:BisInspAll
- *
- * @author lune
- * @date 2019-2-23
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspAll extends BaseBean implements Serializable {
- private String id;
- private String pid;
- private String pnm;
- private Date sttm;
- private Date entm;
- private int count;
- private String code;
- private int onLineCount;
- private String inspYear;
- private String inspMnth;
- private String inspTask;
- @ApiModelProperty(value = "导入数据标记(1:新增;2:修改)", name = "impData")
- private String impData;
- @ApiModelProperty(value = "是否有路书", name = "isTravel")
- private String isTravel;
- private String orgName;
- @ApiModelProperty(value = "检查模式 1自查 2抽查(新增)", name = "chkType")
- private String chkType;
- // 牵头单位(新增)
- @ApiModelProperty(value = "牵头单位(新增)", name = "leadDep")
- private String leadDep;
- // 检查形式(新增)1四不两直 2明查 3暗访 4书面 5其他
- @ApiModelProperty(value = "检查形式(新增)1四不两直 2明查 3暗访 4书面 5其他", name = "chkForm")
- private String chkForm;
- // 年度任务ID(新增)
- @ApiModelProperty(value = "年度任务ID(新增)", name = "yearTaskId")
- private String yearTaskId;
- @ApiModelProperty(value = "是否是计划", name = "isPlan")
- private String isPlan;
- @ApiModelProperty("计划检查项目数量")
- private Long quantity;
- @ApiModelProperty("单位 ID")
- private String planDpId;
- private String note;
- //组里的角色
- private String pertype;
- private List<BisInspAll> childrens;
- public List<BisInspAll> getChildrens() {
- return childrens;
- }
- public void setChildrens(List<BisInspAll> childrens) {
- this.childrens = childrens;
- }
- public BisInspAll() {
- }
- public String getOrgName() {
- return orgName;
- }
- public void setOrgName(String orgName) {
- this.orgName = orgName;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getIsTravel() {
- return isTravel;
- }
- public void setIsTravel(String isTravel) {
- this.isTravel = isTravel;
- }
- 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 getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getPid() {
- return pid;
- }
- public void setPid(String pid) {
- this.pid = pid;
- }
- public String getPnm() {
- return pnm;
- }
- public void setPnm(String pnm) {
- this.pnm = pnm;
- }
- public Date getSttm() {
- return sttm;
- }
- public void setSttm(Date sttm) {
- this.sttm = sttm;
- }
- public Date getEntm() {
- return entm;
- }
- public void setEntm(Date entm) {
- this.entm = entm;
- }
- public int getCount() {
- return count;
- }
- public void setCount(int count) {
- this.count = count;
- }
- public int getOnLineCount() {
- return onLineCount;
- }
- public void setOnLineCount(int onLineCount) {
- this.onLineCount = onLineCount;
- }
- @Override
- public String toString() {
- return "BisInspAll [" + "id=" + id + ", pid=" + pid + ", pnm=" + pnm + ", sttm=" + sttm + ", entm=" + entm + "]";
- }
- public String getInspTask() {
- return inspTask;
- }
- public void setInspTask(String inspTask) {
- this.inspTask = inspTask;
- }
- public String getImpData() {
- return impData;
- }
- public void setImpData(String impData) {
- this.impData = impData;
- }
- public String getChkType() {
- return chkType;
- }
- public void setChkType(String chkType) {
- this.chkType = chkType;
- }
- public String getLeadDep() {
- return leadDep;
- }
- public void setLeadDep(String leadDep) {
- this.leadDep = leadDep;
- }
- public String getChkForm() {
- return chkForm;
- }
- public void setChkForm(String chkForm) {
- this.chkForm = chkForm;
- }
- public String getYearTaskId() {
- return yearTaskId;
- }
- public void setYearTaskId(String yearTaskId) {
- this.yearTaskId = yearTaskId;
- }
- public String getIsPlan() {
- return isPlan;
- }
- public void setIsPlan(String isPlan) {
- this.isPlan = isPlan;
- }
- public Long getQuantity() {
- return quantity;
- }
- public void setQuantity(Long quantity) {
- this.quantity = quantity;
- }
- public String getPlanDpId() {
- return planDpId;
- }
- public void setPlanDpId(String planDpId) {
- this.planDpId = planDpId;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getPertype() {
- return pertype;
- }
- public void setPertype(String pertype) {
- this.pertype = pertype;
- }
- }
|