c82337f65e9ee2613e602561592ec3d13359883e.svn-base 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. /**
  7. * entity:BisPntBase
  8. *
  9. * @author lune
  10. * @date 2019-2-19
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class BisPntBase extends BaseBean implements Serializable {
  14. private String guid;
  15. private String pblmId;
  16. private String inspObjGuid;
  17. private String pntCont;
  18. private String pblshOrgGuid;
  19. private String inspPblmDep;
  20. private String isResp;
  21. private String dataStat;
  22. private String recPers;
  23. private Date collTime;
  24. private String note;
  25. public BisPntBase() {
  26. }
  27. public String getGuid() {
  28. return guid;
  29. }
  30. public void setGuid(String guid) {
  31. this.guid = guid;
  32. }
  33. public String getPblmId() {
  34. return pblmId;
  35. }
  36. public void setPblmId(String pblmId) {
  37. this.pblmId = pblmId;
  38. }
  39. public String getInspObjGuid() {
  40. return inspObjGuid;
  41. }
  42. public void setInspObjGuid(String inspObjGuid) {
  43. this.inspObjGuid = inspObjGuid;
  44. }
  45. public String getPntCont() {
  46. return pntCont;
  47. }
  48. public void setPntCont(String pntCont) {
  49. this.pntCont = pntCont;
  50. }
  51. public String getPblshOrgGuid() {
  52. return pblshOrgGuid;
  53. }
  54. public void setPblshOrgGuid(String pblshOrgGuid) {
  55. this.pblshOrgGuid = pblshOrgGuid;
  56. }
  57. public String getInspPblmDep() {
  58. return inspPblmDep;
  59. }
  60. public void setInspPblmDep(String inspPblmDep) {
  61. this.inspPblmDep = inspPblmDep;
  62. }
  63. public String getIsResp() {
  64. return isResp;
  65. }
  66. public void setIsResp(String isResp) {
  67. this.isResp = isResp;
  68. }
  69. public String getDataStat() {
  70. return dataStat;
  71. }
  72. public void setDataStat(String dataStat) {
  73. this.dataStat = dataStat;
  74. }
  75. public String getRecPers() {
  76. return recPers;
  77. }
  78. public void setRecPers(String recPers) {
  79. this.recPers = recPers;
  80. }
  81. public Date getCollTime() {
  82. return collTime;
  83. }
  84. public void setCollTime(Date collTime) {
  85. this.collTime = collTime;
  86. }
  87. public String getNote() {
  88. return note;
  89. }
  90. public void setNote(String note) {
  91. this.note = note;
  92. }
  93. @Override
  94. public String toString() {
  95. return "BisPntBase [" + "guid=" + guid + ", pblmId=" + pblmId + ", inspObjGuid=" + inspObjGuid + ", pntCont=" + pntCont + ", pblshOrgGuid=" + pblshOrgGuid + ", inspPblmDep=" + inspPblmDep + ", isResp=" + isResp + ", dataStat=" + dataStat + ", recPers=" + recPers + ", collTime=" + collTime + ", note=" + note + "]";
  96. }
  97. }