| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import io.swagger.annotations.ApiModelProperty;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- /**
- * entity:BisInspRepeatCheckLog
- *
- * @author lune
- * @date 2019-9-7
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisInspRepeatCheckLog extends BaseBean 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;
- @ApiModelProperty("督查表ids,多个用逗号分隔")
- private String regerIds;
- public BisInspRepeatCheckLog() {
- }
- public String getRegerIds() {
- return regerIds;
- }
- public void setRegerIds(String regerIds) {
- this.regerIds = regerIds;
- }
- 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;
- }
- @Override
- public String toString() {
- return "BisInspRepeatCheckLog [" + "id=" + id + ", regerId=" + regerId + ", intm=" + intm + ", note=" + note + ", persId=" + persId + ", type=" + type + "]";
- }
- }
|