ZttDTO.java 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. package com.onemap.analyse.domain;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import java.util.Date;
  4. @TableName("t_yzt_ztt")
  5. public class ZttDTO {
  6. private String bsm;
  7. private String mbbsm;
  8. private String zbt;
  9. private String fbt;
  10. private String bzdw;
  11. private String bzsj;
  12. private String ztsj;
  13. private String ztdw;
  14. private Integer ztzt;
  15. private String zttwj;
  16. private Date kssj;
  17. private Date jssj;
  18. private String cjyh;
  19. private Date cjsj;
  20. private String bz;
  21. private String xzqdm;
  22. public String getXzqdm() {
  23. return xzqdm;
  24. }
  25. public void setXzqdm(String xzqdm) {
  26. this.xzqdm = xzqdm;
  27. }
  28. public String getBsm() {
  29. return bsm;
  30. }
  31. public void setBsm(String bsm) {
  32. this.bsm = bsm;
  33. }
  34. public String getMbbsm() {
  35. return mbbsm;
  36. }
  37. public void setMbbsm(String mbbsm) {
  38. this.mbbsm = mbbsm;
  39. }
  40. public String getZbt() {
  41. return zbt;
  42. }
  43. public void setZbt(String zbt) {
  44. this.zbt = zbt;
  45. }
  46. public String getFbt() {
  47. return fbt;
  48. }
  49. public void setFbt(String fbt) {
  50. this.fbt = fbt;
  51. }
  52. public String getBzdw() {
  53. return bzdw;
  54. }
  55. public void setBzdw(String bzdw) {
  56. this.bzdw = bzdw;
  57. }
  58. public String getBzsj() {
  59. return bzsj;
  60. }
  61. public void setBzsj(String bzsj) {
  62. this.bzsj = bzsj;
  63. }
  64. public String getZtsj() {
  65. return ztsj;
  66. }
  67. public void setZtsj(String ztsj) {
  68. this.ztsj = ztsj;
  69. }
  70. public String getZtdw() {
  71. return ztdw;
  72. }
  73. public void setZtdw(String ztdw) {
  74. this.ztdw = ztdw;
  75. }
  76. public Integer getZtzt() {
  77. return ztzt;
  78. }
  79. public void setZtzt(Integer ztzt) {
  80. this.ztzt = ztzt;
  81. }
  82. public String getZttwj() {
  83. return zttwj;
  84. }
  85. public void setZttwj(String zttwj) {
  86. this.zttwj = zttwj;
  87. }
  88. public Date getKssj() {
  89. return kssj;
  90. }
  91. public void setKssj(Date kssj) {
  92. this.kssj = kssj;
  93. }
  94. public Date getJssj() {
  95. return jssj;
  96. }
  97. public void setJssj(Date jssj) {
  98. this.jssj = jssj;
  99. }
  100. public String getCjyh() {
  101. return cjyh;
  102. }
  103. public void setCjyh(String cjyh) {
  104. this.cjyh = cjyh;
  105. }
  106. public Date getCjsj() {
  107. return cjsj;
  108. }
  109. public void setCjsj(Date cjsj) {
  110. this.cjsj = cjsj;
  111. }
  112. public String getBz() {
  113. return bz;
  114. }
  115. public void setBz(String bz) {
  116. this.bz = bz;
  117. }
  118. }