| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * BisInspAllParam
- *
- * @author lune
- * @date 2019-2-23
- */
- public class BisInspAllParam extends PageParam implements Serializable {
- private String id;
- private String pid;
- private String pnm;
- private Date sttm;
- private Date entm;
- private String inspYear;
- private String inspMnth;
- private String persId;
- private String nm;
- @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;
- private String isPlan;
- @ApiModelProperty("计划检查项目数量")
- private Long quantity;
- private String planDpId;
- private String note;
- public BisInspAllParam() {
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- 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 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;
- }
- }
|