| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- 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;
- /**
- * BisInspPblmPlistLogParam
- *
- * @author lhc
- * @date 2020-11-4
- */
- public class BisInspPblmPlistLogParam extends PageParam implements Serializable {
- private String id;
- // 问题清单ID
- @ApiParam(name = "问题清单ID")
- @ApiModelProperty(value = "问题清单ID", name = "pblmClistId")
- private String pblmClistId;
- // 操作机构ID
- @ApiParam(name = "操作机构ID")
- @ApiModelProperty(value = "操作机构ID", name = "orgId")
- private String orgId;
- // 操作机构名称
- @ApiParam(name = "操作机构名称")
- @ApiModelProperty(value = "操作机构名称", name = "orgNm")
- private String orgNm;
- // 操作人ID
- @ApiParam(name = "操作人ID")
- @ApiModelProperty(value = "操作人ID", name = "persId")
- private String persId;
- // 操作人姓名
- @ApiParam(name = "操作人姓名")
- @ApiModelProperty(value = "操作人姓名", name = "persName")
- private String persName;
- // 状态
- @ApiParam(name = "状态")
- @ApiModelProperty(value = "状态", name = "state")
- private String state;
- // 状态描述
- @ApiParam(name = "状态描述")
- @ApiModelProperty(value = "状态描述", name = "stateNote")
- private String stateNote;
- // 备注 | 驳回原因
- @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;
- public BisInspPblmPlistLogParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getPblmClistId() {
- return pblmClistId;
- }
- public void setPblmClistId(String pblmClistId) {
- this.pblmClistId = pblmClistId;
- }
- @Override
- public String getOrgId() {
- return orgId;
- }
- @Override
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- public String getOrgNm() {
- return orgNm;
- }
- public void setOrgNm(String orgNm) {
- this.orgNm = orgNm;
- }
- 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;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getStateNote() {
- return stateNote;
- }
- public void setStateNote(String stateNote) {
- this.stateNote = stateNote;
- }
- 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;
- }
- }
|