038790326d298b31931e132e874604b79b928b4c.svn-base 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:BisInspPblmMendPri
  9. *
  10. * @author lhc
  11. * @date 2021-11-18
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspPblmMendPri extends BaseBean implements Serializable {
  15. private String id;
  16. // 人员ID
  17. @ApiModelProperty(value = "人员ID", name = "mandPersId")
  18. private String mandPersId;
  19. // 分配问题来源类型(汉字)
  20. @ApiModelProperty(value = "分配问题来源类型(汉字)", name = "pblmClassify")
  21. private String pblmClassify;
  22. // 备注 | 驳回原因
  23. @ApiModelProperty(value = "备注 | 驳回原因", name = "note")
  24. private String note;
  25. // 创建时间
  26. @ApiModelProperty(value = "创建时间", name = "intm")
  27. private Date intm;
  28. // 修改时间
  29. @ApiModelProperty(value = "修改时间", name = "uptm")
  30. private Date uptm;
  31. // 数据状态(0:正常;9:删除)
  32. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  33. private String dataStat;
  34. // 操作人ID
  35. @ApiModelProperty(value = "操作人ID", name = "persId")
  36. private String persId;
  37. // 操作人姓名
  38. @ApiModelProperty(value = "操作人姓名", name = "persName")
  39. private String persName;
  40. public BisInspPblmMendPri() {
  41. }
  42. public String getId() {
  43. return id;
  44. }
  45. public void setId(String id) {
  46. this.id = id;
  47. }
  48. public String getMandPersId() {
  49. return mandPersId;
  50. }
  51. public void setMandPersId(String mandPersId) {
  52. this.mandPersId = mandPersId;
  53. }
  54. public String getPblmClassify() {
  55. return pblmClassify;
  56. }
  57. public void setPblmClassify(String pblmClassify) {
  58. this.pblmClassify = pblmClassify;
  59. }
  60. public String getNote() {
  61. return note;
  62. }
  63. public void setNote(String note) {
  64. this.note = note;
  65. }
  66. public Date getIntm() {
  67. return intm;
  68. }
  69. public void setIntm(Date intm) {
  70. this.intm = intm;
  71. }
  72. public Date getUptm() {
  73. return uptm;
  74. }
  75. public void setUptm(Date uptm) {
  76. this.uptm = uptm;
  77. }
  78. public String getDataStat() {
  79. return dataStat;
  80. }
  81. public void setDataStat(String dataStat) {
  82. this.dataStat = dataStat;
  83. }
  84. public String getPersId() {
  85. return persId;
  86. }
  87. public void setPersId(String persId) {
  88. this.persId = persId;
  89. }
  90. public String getPersName() {
  91. return persName;
  92. }
  93. public void setPersName(String persName) {
  94. this.persName = persName;
  95. }
  96. @Override
  97. public String toString() {
  98. return "BisInspPblmMendPri [" + "id=" + id + ", mandPersId=" + mandPersId + ", pblmClassify=" + pblmClassify + ", note=" + note + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + ", persId=" + persId + ", persName=" + persName + "]";
  99. }
  100. }