| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiParam;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * BisInspPlanYearParam
- *
- * @author lhc
- * @date 2022-3-3
- */
- public class BisInspPlanYearParam extends PageParam implements Serializable {
- // ID
- @ApiParam(name = "ID")
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- private String adCode;
- // 年度
- @ApiParam(name = "年度")
- @ApiModelProperty(value = "年度", name = "chkYear")
- private Long chkYear;
- // 名 称
- @ApiParam(name = "名 称")
- @ApiModelProperty(value = "名 称", name = "chkName")
- private String chkName;
- // 类别
- @ApiParam(name = "类别")
- @ApiModelProperty(value = "类别", name = "chkType")
- private String chkType;
- // 计划开展时间(开始月)
- @ApiParam(name = "计划开展时间(开始月)")
- @ApiModelProperty(value = "计划开展时间(开始月)", name = "planSttm")
- private Date planSttm;
- // 计划开展时间(结束月)
- @ApiParam(name = "计划开展时间(结束月)")
- @ApiModelProperty(value = "计划开展时间(结束月)", name = "planEntm")
- private Date planEntm;
- // 牵头处室
- @ApiParam(name = "牵头处室")
- @ApiModelProperty(value = "牵头处室", name = "leadDep")
- private String leadDep; // 牵头处室
- @ApiParam(name = "牵头处室Id")
- @ApiModelProperty(value = "牵头处室Id", name = "leadDepId")
- private String leadDepId;
- // 参加处室、单位
- @ApiParam(name = "参加处室、单位")
- @ApiModelProperty(value = "参加处室、单位", name = "joinDep")
- private String joinDep;
- // 开展方式
- @ApiParam(name = "开展方式")
- @ApiModelProperty(value = "开展方式", name = "chkForm")
- private String chkForm;
- // 督查检查对象范围(市)
- @ApiParam(name = "督查检查对象范围(市)")
- @ApiModelProperty(value = "督查检查对象范围(市)", name = "chkScope")
- private String chkScope;
- // 开展依据
- @ApiParam(name = "开展依据")
- @ApiModelProperty(value = "开展依据", name = "chkRly")
- private String chkRly;
- // 备注
- @ApiParam(name = "备注")
- @ApiModelProperty(value = "备注", name = "note")
- private String note;
- // 创建人
- @ApiParam(name = "创建人")
- @ApiModelProperty(value = "创建人", name = "persId")
- private String persId;
- // 创建时间
- @ApiParam(name = "创建时间")
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 修改时间
- @ApiParam(name = "修改时间")
- @ApiModelProperty(value = "修改时间", name = "uptm")
- private Date uptm;
- // 数据状态(0:正常;9:删除)
- @ApiParam(name = "数据状态(0:正常;9:删除)")
- @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
- private String dataStat;
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- // 完结状态
- @ApiParam(name = "完结状态")
- @ApiModelProperty(value = "完结状态", name = "完结状态")
- private String state;
- @ApiParam(name = "序号")
- @ApiModelProperty(value = "序号", name = "ordr")
- private int ordr;
- private String objType;
- private String objName;
- @ApiModelProperty(value = "参建单位ID")
- private String planDpId;
- private String adGrad;
- /**
- * CHK_CONTENT
- * 详细计划 检查内容
- */
- @ApiModelProperty(value = "检查内容", name = "chkContent")
- private String chkContent ;
- public String getAdGrad() {
- return adGrad;
- }
- public void setAdGrad(String adGrad) {
- this.adGrad = adGrad;
- }
- public BisInspPlanYearParam() {
- }
- 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 int getOrdr() {
- return ordr;
- }
- public void setOrdr(int 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 String getPlanDpId() {
- return planDpId;
- }
- public void setPlanDpId(String planDpId) {
- this.planDpId = planDpId;
- }
- public String getChkContent() {
- return chkContent;
- }
- public void setChkContent(String chkContent) {
- this.chkContent = chkContent;
- }
- public String getLeadDepId() {
- return leadDepId;
- }
- public void setLeadDepId(String leadDepId) {
- this.leadDepId = leadDepId;
- }
- }
|