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 childrens; public List getChildrens() { return childrens; } public void setChildrens(List 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; } }