| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * BisInspPblmDutyParam
- *
- * @author lhc
- * @date 2023-3-13
- */
- public class BisInspPblmDutyParam extends PageParam implements Serializable {
- // ID
- @ApiParam(name = "ID")
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- // 问题ID
- @ApiParam(name = "问题ID")
- @ApiModelProperty(value = "问题ID", name = "pblmId")
- private String pblmId;
- // 责任单位性质(汉字)
- @ApiParam(name = "责任单位性质(汉字)")
- @ApiModelProperty(value = "责任单位性质(汉字)", name = "dutyType")
- private String dutyType;
- // 责任单位名称
- @ApiParam(name = "责任单位名称")
- @ApiModelProperty(value = "责任单位名称", name = "dutyName")
- private String dutyName;
- // 记录人员ID
- @ApiParam(name = "记录人员ID")
- @ApiModelProperty(value = "记录人员ID", name = "persId")
- private String persId;
- // 创建时间
- @ApiParam(name = "创建时间")
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 最后修改时间
- @ApiParam(name = "最后修改时间")
- @ApiModelProperty(value = "最后修改时间", name = "uptm")
- private Date uptm;
- // 备注
- @ApiParam(name = "备注")
- @ApiModelProperty(value = "备注", name = "note")
- private String note;
- // 数据状态
- @ApiParam(name = "数据状态")
- @ApiModelProperty(value = "数据状态", name = "dataStat")
- private String dataStat;
- private String dutyId;
- private String sectPers;
- public String getDutyId() {
- return dutyId;
- }
- public void setDutyId(String dutyId) {
- this.dutyId = dutyId;
- }
- public String getSectPers() {
- return sectPers;
- }
- public void setSectPers(String sectPers) {
- this.sectPers = sectPers;
- }
- public BisInspPblmDutyParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getPblmId() {
- return pblmId;
- }
- public void setPblmId(String pblmId) {
- this.pblmId = pblmId;
- }
- public String getDutyType() {
- return dutyType;
- }
- public void setDutyType(String dutyType) {
- this.dutyType = dutyType;
- }
- public String getDutyName() {
- return dutyName;
- }
- public void setDutyName(String dutyName) {
- this.dutyName = dutyName;
- }
- 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 getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- }
|