| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333 |
- 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:BisInspPlanYear
- *
- * @author lhc
- * @date 2022-3-3
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspPlanYear extends BaseBean implements Serializable {
- // ID
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- private String adCode;
- // 年度
- @ApiModelProperty(value = "年度", name = "chkYear")
- private Long chkYear;
- // 名 称
- @ApiModelProperty(value = "名 称", name = "chkName")
- private String chkName;
- // 类别
- @ApiModelProperty(value = "类别", name = "chkType")
- private String chkType;
- // 计划开展时间(开始月)
- @ApiModelProperty(value = "计划开展时间(开始月)", name = "planSttm")
- private Date planSttm;
- // 计划开展时间(结束月)
- @ApiModelProperty(value = "计划开展时间(结束月)", name = "planEntm")
- private Date planEntm;
- // 牵头处室
- @ApiModelProperty(value = "牵头处室", name = "leadDep")
- private String leadDep;
- @ApiModelProperty(value = "牵头处室ID",name = "leadDepId")
- private String leadDepId;
- // 参加处室、单位
- @ApiModelProperty(value = "参加处室、单位", name = "joinDep")
- private String joinDep;
- // 参加处室、单位 ids
- private List<String> planDpRlIds;
- // 开展方式
- @ApiModelProperty(value = "开展方式", name = "chkForm")
- private String chkForm;
- // 督查检查对象范围(市)
- @ApiModelProperty(value = "督查检查对象范围(市)", name = "chkScope")
- private String chkScope;
- // 开展依据
- @ApiModelProperty(value = "开展依据", name = "chkRly")
- private String chkRly;
- // 备注
- @ApiModelProperty(value = "备注", name = "note")
- private String note;
- // 创建人
- @ApiModelProperty(value = "创建人", name = "persId")
- private String persId;
- // 创建时间
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 修改时间
- @ApiModelProperty(value = "修改时间", name = "uptm")
- private Date uptm;
- // 数据状态(0:正常;9:删除)
- @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
- private String dataStat;
- //年度计划参建单位 ids
- public String getLeadDepId() {
- return leadDepId;
- }
- public void setLeadDepId(String leadDepId) {
- this.leadDepId = leadDepId;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- //办结状态
- @ApiModelProperty(value = "办结状态", name = "state")
- private String state;
- @ApiModelProperty(value = "序号", name = "ordr")
- private Integer ordr;
- private String objType;
- private String objName;
- private String adFullName;
- private String adGrad;
- /**
- * CHK_CONTENT
- * 年度计划 检查内容
- */
- @ApiModelProperty(value = "检查内容", name = "chkContent")
- private String chkContent ;
- public String getAdFullName() {
- return adFullName;
- }
- public void setAdFullName(String adFullName) {
- this.adFullName = adFullName;
- }
- public String getAdGrad() {
- return adGrad;
- }
- public void setAdGrad(String adGrad) {
- this.adGrad = adGrad;
- }
- public BisInspPlanYear() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public Long getChkYear() {
- return chkYear;
- }
- public void setChkYear(Long chkYear) {
- this.chkYear = chkYear;
- }
- 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 Date getPlanSttm() {
- return planSttm;
- }
- public void setPlanSttm(Date planSttm) {
- this.planSttm = planSttm;
- }
- public Date getPlanEntm() {
- return planEntm;
- }
- public void setPlanEntm(Date planEntm) {
- this.planEntm = planEntm;
- }
- public String getLeadDep() {
- return leadDep;
- }
- public void setLeadDep(String leadDep) {
- this.leadDep = leadDep;
- }
- public String getJoinDep() {
- return joinDep;
- }
- public void setJoinDep(String joinDep) {
- this.joinDep = joinDep;
- }
- public String getChkForm() {
- return chkForm;
- }
- public void setChkForm(String chkForm) {
- this.chkForm = chkForm;
- }
- public String getChkScope() {
- return chkScope;
- }
- public void setChkScope(String chkScope) {
- this.chkScope = chkScope;
- }
- public String getChkRly() {
- return chkRly;
- }
- public void setChkRly(String chkRly) {
- this.chkRly = chkRly;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- public Integer getOrdr() {
- return ordr;
- }
- public void setOrdr(Integer ordr) {
- this.ordr = ordr;
- }
- public String getObjType() {
- return objType;
- }
- public void setObjType(String objType) {
- this.objType = objType;
- }
- public String getObjName() {
- return objName;
- }
- public void setObjName(String objName) {
- this.objName = objName;
- }
- public List<String> getPlanDpRlIds() {
- return planDpRlIds;
- }
- public void setPlanDpRlIds(List<String> planDpRlIds) {
- this.planDpRlIds = planDpRlIds;
- }
- public String getChkContent() {
- return chkContent;
- }
- public void setChkContent(String chkContent) {
- this.chkContent = chkContent;
- }
- @Override
- public String toString() {
- return "BisInspPlanYear{" +
- "id='" + id + '\'' +
- ", adCode='" + adCode + '\'' +
- ", chkYear=" + chkYear +
- ", chkName='" + chkName + '\'' +
- ", chkType='" + chkType + '\'' +
- ", planSttm=" + planSttm +
- ", planEntm=" + planEntm +
- ", leadDep='" + leadDep + '\'' +
- ", joinDep='" + joinDep + '\'' +
- ", chkForm='" + chkForm + '\'' +
- ", chkScope='" + chkScope + '\'' +
- ", chkRly='" + chkRly + '\'' +
- ", note='" + note + '\'' +
- ", persId='" + persId + '\'' +
- ", intm=" + intm +
- ", uptm=" + uptm +
- ", dataStat='" + dataStat + '\'' +
- ", state='" + state + '\'' +
- ", ordr='" + ordr + '\'' +
- ", chkContent='" + chkContent + '\'' +
- '}';
- }
- }
|