| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- 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;
- /**
- * AttGnrlSectBaseParam
- *
- * @author lhc
- * @date 2023-3-15
- */
- public class AttGnrlSectBaseParam extends PageParam implements Serializable {
- // ID
- @ApiParam(name = "ID")
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- // 通用督查对象ID
- @ApiParam(name = " 通用督查对象ID")
- @ApiModelProperty(value = " 通用督查对象ID", name = "gnrlId")
- private String gnrlId;
- // 单位性质
- @ApiParam(name = "单位性质")
- @ApiModelProperty(value = "单位性质", name = "sectType")
- private String sectType;
- // 单位名称
- @ApiParam(name = "单位名称")
- @ApiModelProperty(value = "单位名称", name = "sectName")
- private String sectName;
- // 人员
- @ApiParam(name = "人员")
- @ApiModelProperty(value = "人员", name = "sectPers")
- private String sectPers;
- // 记录人员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 = "dataStat")
- private String dataStat;
- public AttGnrlSectBaseParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getGnrlId() {
- return gnrlId;
- }
- public void setGnrlId(String gnrlId) {
- this.gnrlId = gnrlId;
- }
- public String getSectType() {
- return sectType;
- }
- public void setSectType(String sectType) {
- this.sectType = sectType;
- }
- public String getSectName() {
- return sectName;
- }
- public void setSectName(String sectName) {
- this.sectName = sectName;
- }
- public String getSectPers() {
- return sectPers;
- }
- public void setSectPers(String sectPers) {
- this.sectPers = sectPers;
- }
- 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;
- }
- }
|