66defb841d061e403347bd999f59bf5954a74046.svn-base 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.List;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:ObjKeyPblmRel
  9. *
  10. * @author lune
  11. * @date 2019-4-25
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class ObjKeyPblmRel extends BaseBean implements Serializable {
  15. // 项目类型
  16. private String type;
  17. // 项目子类型:督查分类
  18. private String proType;
  19. // 责任单位
  20. private String reviOrg;
  21. // 问题类别
  22. private String pblmType;
  23. // 对应标准
  24. private String pblmPoint;
  25. // 问题附件
  26. private String pblmAttach;
  27. // 附件序号范围
  28. private String pblmSn;
  29. @ApiModelProperty("单位性质id")
  30. private String orgType;
  31. @ApiModelProperty("附件名称")
  32. private String pblmAttachName;
  33. @ApiModelProperty("附件名称,附件序号列表")
  34. private List<PblmRelDic> pblmRelDics;
  35. public List<PblmRelDic> getPblmRelDics() {
  36. return pblmRelDics;
  37. }
  38. public void setPblmRelDics(List<PblmRelDic> pblmRelDics) {
  39. this.pblmRelDics = pblmRelDics;
  40. }
  41. public String getPblmAttachName() {
  42. return pblmAttachName;
  43. }
  44. public void setPblmAttachName(String pblmAttachName) {
  45. this.pblmAttachName = pblmAttachName;
  46. }
  47. public String getOrgType() {
  48. return orgType;
  49. }
  50. public void setOrgType(String orgType) {
  51. this.orgType = orgType;
  52. }
  53. public ObjKeyPblmRel() {
  54. }
  55. public String getType() {
  56. return type;
  57. }
  58. public void setType(String type) {
  59. this.type = type;
  60. }
  61. public String getProType() {
  62. return proType;
  63. }
  64. public void setProType(String proType) {
  65. this.proType = proType;
  66. }
  67. public String getReviOrg() {
  68. return reviOrg;
  69. }
  70. public void setReviOrg(String reviOrg) {
  71. this.reviOrg = reviOrg;
  72. }
  73. public String getPblmType() {
  74. return pblmType;
  75. }
  76. public void setPblmType(String pblmType) {
  77. this.pblmType = pblmType;
  78. }
  79. public String getPblmPoint() {
  80. return pblmPoint;
  81. }
  82. public void setPblmPoint(String pblmPoint) {
  83. this.pblmPoint = pblmPoint;
  84. }
  85. public String getPblmAttach() {
  86. return pblmAttach;
  87. }
  88. public void setPblmAttach(String pblmAttach) {
  89. this.pblmAttach = pblmAttach;
  90. }
  91. public String getPblmSn() {
  92. return pblmSn;
  93. }
  94. public void setPblmSn(String pblmSn) {
  95. this.pblmSn = pblmSn;
  96. }
  97. @Override
  98. public String toString() {
  99. return "ObjKeyPblmRel [" + "type=" + type + ", proType=" + proType + ", reviOrg=" + reviOrg + ", pblmType=" + pblmType + ", pblmPoint=" + pblmPoint + ", pblmAttach=" + pblmAttach + ", pblmSn=" + pblmSn + "]";
  100. }
  101. }