HgxfxDTO.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. package com.onemap.analyse.domain;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import java.util.Date;
  4. /**
  5. * 合规性分析
  6. */
  7. @TableName("t_fzss_hgxfx")
  8. public class HgxfxDTO {
  9. private String bsm;
  10. private Double fxmj;
  11. private String xmmc;
  12. private String xmlx;
  13. private String jsdw;
  14. private String ydxz_bsm;
  15. private String fxbg;
  16. private Integer rwzt;
  17. private Date rwkssj;
  18. private Date rwjssj;
  19. private String cjyh;
  20. private String rwly;
  21. private Date cjsj;
  22. public String getBsm() {
  23. return bsm;
  24. }
  25. public void setBsm(String bsm) {
  26. this.bsm = bsm;
  27. }
  28. public Double getFxmj() {
  29. return fxmj;
  30. }
  31. public void setFxmj(Double fxmj) {
  32. this.fxmj = fxmj;
  33. }
  34. public String getXmmc() {
  35. return xmmc;
  36. }
  37. public void setXmmc(String xmmc) {
  38. this.xmmc = xmmc;
  39. }
  40. public String getXmlx() {
  41. return xmlx;
  42. }
  43. public void setXmlx(String xmlx) {
  44. this.xmlx = xmlx;
  45. }
  46. public String getJsdw() {
  47. return jsdw;
  48. }
  49. public void setJsdw(String jsdw) {
  50. this.jsdw = jsdw;
  51. }
  52. public String getYdxz_bsm() {
  53. return ydxz_bsm;
  54. }
  55. public void setYdxz_bsm(String ydxz_bsm) {
  56. this.ydxz_bsm = ydxz_bsm;
  57. }
  58. public String getFxbg() {
  59. return fxbg;
  60. }
  61. public void setFxbg(String fxbg) {
  62. this.fxbg = fxbg;
  63. }
  64. public Integer getRwzt() {
  65. return rwzt;
  66. }
  67. public void setRwzt(Integer rwzt) {
  68. this.rwzt = rwzt;
  69. }
  70. public Date getRwkssj() {
  71. return rwkssj;
  72. }
  73. public void setRwkssj(Date rwkssj) {
  74. this.rwkssj = rwkssj;
  75. }
  76. public Date getRwjssj() {
  77. return rwjssj;
  78. }
  79. public void setRwjssj(Date rwjssj) {
  80. this.rwjssj = rwjssj;
  81. }
  82. public String getCjyh() {
  83. return cjyh;
  84. }
  85. public void setCjyh(String cjyh) {
  86. this.cjyh = cjyh;
  87. }
  88. public Date getCjsj() {
  89. return cjsj;
  90. }
  91. public void setCjsj(Date cjsj) {
  92. this.cjsj = cjsj;
  93. }
  94. public String getRwly() {
  95. return rwly;
  96. }
  97. public void setRwly(String rwly) {
  98. this.rwly = rwly;
  99. }
  100. }