17ddb0d6edb12219ab76636a638ff4e8fff86a2d.svn-base 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import cn.com.goldenwater.core.model.BaseBean;
  6. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  7. /**
  8. * entity:BisInspRepeatCheckLog
  9. *
  10. * @author lune
  11. * @date 2019-9-7
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspRepeatCheckLog extends BaseBean implements Serializable {
  15. @ApiModelProperty("复查表唯一标识")
  16. private String id;
  17. @ApiModelProperty("督查表id")
  18. private String regerId;
  19. @ApiModelProperty("复查时间")
  20. private Date intm;
  21. @ApiModelProperty("复查备注信息")
  22. private String note;
  23. @ApiModelProperty("提交复查用户id")
  24. private String persId;
  25. @ApiModelProperty("未来本表可用于记录用户操作督查表流程。0标识复查")
  26. private String type;
  27. @ApiModelProperty("督查表ids,多个用逗号分隔")
  28. private String regerIds;
  29. public BisInspRepeatCheckLog() {
  30. }
  31. public String getRegerIds() {
  32. return regerIds;
  33. }
  34. public void setRegerIds(String regerIds) {
  35. this.regerIds = regerIds;
  36. }
  37. public String getId() {
  38. return id;
  39. }
  40. public void setId(String id) {
  41. this.id = id;
  42. }
  43. public String getRegerId() {
  44. return regerId;
  45. }
  46. public void setRegerId(String regerId) {
  47. this.regerId = regerId;
  48. }
  49. public Date getIntm() {
  50. return intm;
  51. }
  52. public void setIntm(Date intm) {
  53. this.intm = intm;
  54. }
  55. public String getNote() {
  56. return note;
  57. }
  58. public void setNote(String note) {
  59. this.note = note;
  60. }
  61. public String getPersId() {
  62. return persId;
  63. }
  64. public void setPersId(String persId) {
  65. this.persId = persId;
  66. }
  67. public String getType() {
  68. return type;
  69. }
  70. public void setType(String type) {
  71. this.type = type;
  72. }
  73. @Override
  74. public String toString() {
  75. return "BisInspRepeatCheckLog [" + "id=" + id + ", regerId=" + regerId + ", intm=" + intm + ", note=" + note + ", persId=" + persId + ", type=" + type + "]";
  76. }
  77. }