c01258d7bd295deea3d19aa24269b9c851f3d4a2.svn-base 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. /**
  7. * entity:BisInspRecvUnit
  8. *
  9. * @author lhc
  10. * @date 2019-4-30
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class BisInspRecvUnitDto extends BaseBean implements Serializable {
  14. // ID
  15. @ApiModelProperty(value = "ID", name = "id")
  16. private String id;
  17. // 下发单位编码
  18. @ApiModelProperty(value = "下发单位编码", name = "orgId")
  19. private String orgId;
  20. // 是否查看
  21. @ApiModelProperty(value = "是否查看", name = "flagChk")
  22. private String flagChk;
  23. // COPY:抄送 RECV:接收
  24. @ApiModelProperty(value = "COPY:抄送 RECV:接收", name = "recvType")
  25. private String recvType;
  26. // 消息关闭人员
  27. @ApiModelProperty(value = "消息关闭人员", name = "persid")
  28. private String persid;
  29. // 通知ID
  30. @ApiModelProperty(value = "通知ID", name = "ntfctnId")
  31. private String ntfctnId;
  32. // 数据是否有效 1 0
  33. @ApiModelProperty(value = "数据是否有效 1 0 ", name = "flagValid")
  34. private String flagValid;
  35. @ApiModelProperty(value = "人员姓名", name = "persName")
  36. private String persName;//pers_name
  37. @ApiModelProperty(value = "单位名称", name = "orgNm")
  38. private String orgNm;//ORG_NM
  39. public BisInspRecvUnitDto() {
  40. }
  41. public String getId() {
  42. return id;
  43. }
  44. public void setId(String id) {
  45. this.id = id;
  46. }
  47. @Override
  48. public String getOrgId() {
  49. return orgId;
  50. }
  51. @Override
  52. public void setOrgId(String orgId) {
  53. this.orgId = orgId;
  54. }
  55. public String getFlagChk() {
  56. return flagChk;
  57. }
  58. public void setFlagChk(String flagChk) {
  59. this.flagChk = flagChk;
  60. }
  61. public String getRecvType() {
  62. return recvType;
  63. }
  64. public void setRecvType(String recvType) {
  65. this.recvType = recvType;
  66. }
  67. public String getPersid() {
  68. return persid;
  69. }
  70. public void setPersid(String persid) {
  71. this.persid = persid;
  72. }
  73. public String getNtfctnId() {
  74. return ntfctnId;
  75. }
  76. public void setNtfctnId(String ntfctnId) {
  77. this.ntfctnId = ntfctnId;
  78. }
  79. public String getFlagValid() {
  80. return flagValid;
  81. }
  82. public void setFlagValid(String flagValid) {
  83. this.flagValid = flagValid;
  84. }
  85. public String getPersName() {
  86. return persName;
  87. }
  88. public void setPersName(String persName) {
  89. this.persName = persName;
  90. }
  91. public String getOrgNm() {
  92. return orgNm;
  93. }
  94. public void setOrgNm(String orgNm) {
  95. this.orgNm = orgNm;
  96. }
  97. }