DtywCbsbytHwEntity.java 1.8 KB

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