DtywCbsbszHwEntity.java 1.8 KB

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