| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- 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;
- /**
- * BisInspPblmMendPriParam
- *
- * @author lhc
- * @date 2021-11-18
- */
- public class BisInspPblmMendPriParam extends PageParam implements Serializable {
- private String id;
- // 人员ID
- @ApiParam(name = "人员ID")
- @ApiModelProperty(value = "人员ID", name = "mandPersId")
- private String mandPersId;
- // 分配问题来源类型(汉字)
- @ApiParam(name = "分配问题来源类型(汉字)")
- @ApiModelProperty(value = "分配问题来源类型(汉字)", name = "pblmClassify")
- private String pblmClassify;
- // 备注 | 驳回原因
- @ApiParam(name = "备注 | 驳回原因")
- @ApiModelProperty(value = "备注 | 驳回原因", name = "note")
- private String note;
- // 创建时间
- @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;
- // 操作人ID
- @ApiParam(name = "操作人ID")
- @ApiModelProperty(value = "操作人ID", name = "persId")
- private String persId;
- // 操作人姓名
- @ApiParam(name = "操作人姓名")
- @ApiModelProperty(value = "操作人姓名", name = "persName")
- private String persName;
- public BisInspPblmMendPriParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getMandPersId() {
- return mandPersId;
- }
- public void setMandPersId(String mandPersId) {
- this.mandPersId = mandPersId;
- }
- public String getPblmClassify() {
- return pblmClassify;
- }
- public void setPblmClassify(String pblmClassify) {
- this.pblmClassify = pblmClassify;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- 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 String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getPersName() {
- return persName;
- }
- public void setPersName(String persName) {
- this.persName = persName;
- }
- }
|