| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- 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;
- /**
- * BisInspRepeatCheckLogParam
- *
- * @author lune
- * @date 2019-9-7
- */
- public class BisInspRepeatCheckLogParam extends PageParam implements Serializable {
- @ApiModelProperty("复查表唯一标识")
- private String id;
- @ApiModelProperty("督查表id")
- private String regerId;
- @ApiModelProperty("复查时间")
- private Date intm;
- @ApiModelProperty("复查备注信息")
- private String note;
- @ApiModelProperty("提交复查用户id")
- private String persId;
- @ApiModelProperty("未来本表可用于记录用户操作督查表流程。0标识复查")
- private String type;
- public BisInspRepeatCheckLogParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getRegerId() {
- return regerId;
- }
- public void setRegerId(String regerId) {
- this.regerId = regerId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- }
|