DtywCbsbytHwEntity.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. package com.jtgh.cjhs.entity;
  2. import javax.persistence.Entity;
  3. import javax.persistence.Table;
  4. /**
  5. * 船舶申报液体货物
  6. * @author 刘福亮
  7. *
  8. */
  9. @Entity
  10. @Table(name = "DTYW_CBSBYT_HW")
  11. public class DtywCbsbytHwEntity {
  12. // 申报单编号
  13. private String sbdbh;
  14. // 货物类型
  15. private String hwlx;
  16. // 危规编号
  17. private String wgbh;
  18. // 货物中文名称
  19. private String zqysmczw;
  20. // 危险类别
  21. private String wxlb;
  22. // 总重量
  23. private Double sl;
  24. // 卸货港中文名称
  25. private String xhgzwmc;
  26. // 流转标志
  27. private String lzbz;
  28. // 危险货物标志
  29. private String wxhwbz;
  30. public String getSbdbh() {
  31. return sbdbh;
  32. }
  33. public void setSbdbh(String sbdbh) {
  34. this.sbdbh = sbdbh;
  35. }
  36. public String getHwlx() {
  37. return hwlx;
  38. }
  39. public void setHwlx(String hwlx) {
  40. this.hwlx = hwlx;
  41. }
  42. public String getWgbh() {
  43. return wgbh;
  44. }
  45. public void setWgbh(String wgbh) {
  46. this.wgbh = wgbh;
  47. }
  48. public String getZqysmczw() {
  49. return zqysmczw;
  50. }
  51. public void setZqysmczw(String zqysmczw) {
  52. this.zqysmczw = zqysmczw;
  53. }
  54. public String getWxlb() {
  55. return wxlb;
  56. }
  57. public void setWxlb(String wxlb) {
  58. this.wxlb = wxlb;
  59. }
  60. public Double getSl() {
  61. return sl;
  62. }
  63. public void setSl(Double sl) {
  64. this.sl = sl;
  65. }
  66. public String getXhgzwmc() {
  67. return xhgzwmc;
  68. }
  69. public void setXhgzwmc(String xhgzwmc) {
  70. this.xhgzwmc = xhgzwmc;
  71. }
  72. public String getLzbz() {
  73. return lzbz;
  74. }
  75. public void setLzbz(String lzbz) {
  76. this.lzbz = lzbz;
  77. }
  78. public String getWxhwbz() {
  79. return wxhwbz;
  80. }
  81. public void setWxhwbz(String wxhwbz) {
  82. this.wxhwbz = wxhwbz;
  83. }
  84. private Long bsxh;
  85. private Long xh;
  86. public Long getBsxh() {
  87. return bsxh;
  88. }
  89. public void setBsxh(Long bsxh) {
  90. this.bsxh = bsxh;
  91. }
  92. public Long getXh() {
  93. return xh;
  94. }
  95. public void setXh(Long xh) {
  96. this.xh = xh;
  97. }
  98. }