| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- 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;
- /**
- * BisInspKeyRegSecUnitParam
- *
- * @author lhc
- * @date 2019-4-20
- */
- public class BisInspKeyRegSecUnitParam extends PageParam implements Serializable {
- // 主键ID
- @ApiParam(name = "主键ID")
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 标段ID
- @ApiParam(name = "标段ID")
- @ApiModelProperty(value = "标段ID", name = "secId")
- private String secId;
- // 单位名称
- @ApiParam(name = "单位名称")
- @ApiModelProperty(value = "单位名称", name = "nm")
- private String nm;
- // 单位性质
- @ApiParam(name = "单位性质")
- @ApiModelProperty(value = "单位性质", name = "nature")
- private String nature;
- // 监管模式
- @ApiParam(name = "监管模式")
- @ApiModelProperty(value = "监管模式", name = "government")
- private String government;
- // 记录人员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;
- @ApiModelProperty("任务对象id")
- private String objId;
- public String getObjId() {
- return objId;
- }
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public BisInspKeyRegSecUnitParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getSecId() {
- return secId;
- }
- public void setSecId(String secId) {
- this.secId = secId;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public String getNature() {
- return nature;
- }
- public void setNature(String nature) {
- this.nature = nature;
- }
- public String getGovernment() {
- return government;
- }
- public void setGovernment(String government) {
- this.government = government;
- }
- 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;
- }
- }
|