| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- 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;
- /**
- * BisInspSwhsRgstrWaterParam
- *
- * @author lune
- * @date 2019-8-7
- */
- public class BisInspSwhsRgstrWaterParam extends PageParam implements Serializable {
- @ApiModelProperty("主键ID")
- private String id;
- @ApiModelProperty("登记表ID")
- private String rgstrId;
- @ApiModelProperty("是否按规定建设应急备用水源(1:是;2:否)")
- private String isBebwsar;
- @ApiModelProperty("记录人员ID")
- private String recPersId;
- @ApiModelProperty("创建时间")
- private Date inTm;
- @ApiModelProperty("修改时间")
- private Date upTm;
- @ApiModelProperty("数据状态")
- private String dataStat;
- public BisInspSwhsRgstrWaterParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getRgstrId() {
- return rgstrId;
- }
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public String getIsBebwsar() {
- return isBebwsar;
- }
- public void setIsBebwsar(String isBebwsar) {
- this.isBebwsar = isBebwsar;
- }
- public String getRecPersId() {
- return recPersId;
- }
- public void setRecPersId(String recPersId) {
- this.recPersId = recPersId;
- }
- 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;
- }
- }
|