DtywCbsbgtHwEntity.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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_CBSBGT_HW")
  11. public class DtywCbsbgtHwEntity {
  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 String zzl;
  24. //流转标志
  25. private String lzbz;
  26. //危险货物标志
  27. private String wxhwbz;
  28. public String getSbdbh() {
  29. return sbdbh;
  30. }
  31. public void setSbdbh(String sbdbh) {
  32. this.sbdbh = sbdbh;
  33. }
  34. public String getHwlx() {
  35. return hwlx;
  36. }
  37. public void setHwlx(String hwlx) {
  38. this.hwlx = hwlx;
  39. }
  40. public String getWgbh() {
  41. return wgbh;
  42. }
  43. public void setWgbh(String wgbh) {
  44. this.wgbh = wgbh;
  45. }
  46. public String getZqysmczw() {
  47. return zqysmczw;
  48. }
  49. public void setZqysmczw(String zqysmczw) {
  50. this.zqysmczw = zqysmczw;
  51. }
  52. public String getWxlb() {
  53. return wxlb;
  54. }
  55. public void setWxlb(String wxlb) {
  56. this.wxlb = wxlb;
  57. }
  58. public String getLzbz() {
  59. return lzbz;
  60. }
  61. public void setLzbz(String lzbz) {
  62. this.lzbz = lzbz;
  63. }
  64. public String getWxhwbz() {
  65. return wxhwbz;
  66. }
  67. public void setWxhwbz(String wxhwbz) {
  68. this.wxhwbz = wxhwbz;
  69. }
  70. public String getZzl() {
  71. return zzl;
  72. }
  73. public void setZzl(String zzl) {
  74. this.zzl = zzl;
  75. }
  76. private Long bsxh;
  77. private Long xh;
  78. public Long getBsxh() {
  79. return bsxh;
  80. }
  81. public void setBsxh(Long bsxh) {
  82. this.bsxh = bsxh;
  83. }
  84. public Long getXh() {
  85. return xh;
  86. }
  87. public void setXh(Long xh) {
  88. this.xh = xh;
  89. }
  90. }