DtywCbsbEntity.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. package com.jtgh.cjhs.entity;
  2. import java.util.Date;
  3. import javax.persistence.Entity;
  4. import javax.persistence.Id;
  5. import javax.persistence.Table;
  6. /**
  7. * 危险品申报信息
  8. * @author 刘福亮
  9. *
  10. */
  11. @Entity
  12. @Table(name = "DTYW_CBSB")
  13. public class DtywCbsbEntity extends CjhsBaseEntity {
  14. /**
  15. *
  16. */
  17. private static final long serialVersionUID = 8334216326842548765L;
  18. //申报单 编号
  19. private String sbdbh;
  20. //申报单类别
  21. private String sbdlb;
  22. //船舶编号
  23. private String cbbh;
  24. //中文船名
  25. private String zwcm;
  26. //英文船名
  27. private String ywcm;
  28. //国籍代码
  29. private String gjdm;
  30. //总吨
  31. private Double zd;
  32. //净吨
  33. private Double jd;
  34. //总载重吨
  35. private Double zzzd;
  36. //箱位
  37. private Long xw;
  38. //港口中文名称
  39. private String gkzwmc;
  40. //港口英文名称
  41. private String gkywmc;
  42. //作业港口名称
  43. private String zygkmc;
  44. //泊位代码
  45. private String bwdm;
  46. //到港时间
  47. private Date dgsj;
  48. //开始作业时间
  49. private Date kszysj;
  50. //结束作业时间
  51. private Date jszysj;
  52. //申报单位名称
  53. private String sbdwmc;
  54. //申报员姓名
  55. private String sbyxm;
  56. //申报日期
  57. private Date sbrq;
  58. //审核单位
  59. private String shdw;
  60. //审核日期
  61. private Date shrq;
  62. //流转标志
  63. private String lzbz;
  64. @Id
  65. public String getSbdbh() {
  66. return sbdbh;
  67. }
  68. public void setSbdbh(String sbdbh) {
  69. this.sbdbh = sbdbh;
  70. }
  71. public String getSbdlb() {
  72. return sbdlb;
  73. }
  74. public void setSbdlb(String sbdlb) {
  75. this.sbdlb = sbdlb;
  76. }
  77. public String getCbbh() {
  78. return cbbh;
  79. }
  80. public void setCbbh(String cbbh) {
  81. this.cbbh = cbbh;
  82. }
  83. public String getZwcm() {
  84. return zwcm;
  85. }
  86. public void setZwcm(String zwcm) {
  87. this.zwcm = zwcm;
  88. }
  89. public String getYwcm() {
  90. return ywcm;
  91. }
  92. public void setYwcm(String ywcm) {
  93. this.ywcm = ywcm;
  94. }
  95. public String getGjdm() {
  96. return gjdm;
  97. }
  98. public void setGjdm(String gjdm) {
  99. this.gjdm = gjdm;
  100. }
  101. public Double getZd() {
  102. return zd;
  103. }
  104. public void setZd(Double zd) {
  105. this.zd = zd;
  106. }
  107. public Double getJd() {
  108. return jd;
  109. }
  110. public void setJd(Double jd) {
  111. this.jd = jd;
  112. }
  113. public Double getZzzd() {
  114. return zzzd;
  115. }
  116. public void setZzzd(Double zzzd) {
  117. this.zzzd = zzzd;
  118. }
  119. public Long getXw() {
  120. return xw;
  121. }
  122. public void setXw(Long xw) {
  123. this.xw = xw;
  124. }
  125. public String getGkzwmc() {
  126. return gkzwmc;
  127. }
  128. public void setGkzwmc(String gkzwmc) {
  129. this.gkzwmc = gkzwmc;
  130. }
  131. public String getGkywmc() {
  132. return gkywmc;
  133. }
  134. public void setGkywmc(String gkywmc) {
  135. this.gkywmc = gkywmc;
  136. }
  137. public String getZygkmc() {
  138. return zygkmc;
  139. }
  140. public void setZygkmc(String zygkmc) {
  141. this.zygkmc = zygkmc;
  142. }
  143. public String getBwdm() {
  144. return bwdm;
  145. }
  146. public void setBwdm(String bwdm) {
  147. this.bwdm = bwdm;
  148. }
  149. public Date getDgsj() {
  150. return dgsj;
  151. }
  152. public void setDgsj(Date dgsj) {
  153. this.dgsj = dgsj;
  154. }
  155. public Date getKszysj() {
  156. return kszysj;
  157. }
  158. public void setKszysj(Date kszysj) {
  159. this.kszysj = kszysj;
  160. }
  161. public Date getJszysj() {
  162. return jszysj;
  163. }
  164. public void setJszysj(Date jszysj) {
  165. this.jszysj = jszysj;
  166. }
  167. public String getSbdwmc() {
  168. return sbdwmc;
  169. }
  170. public void setSbdwmc(String sbdwmc) {
  171. this.sbdwmc = sbdwmc;
  172. }
  173. public String getSbyxm() {
  174. return sbyxm;
  175. }
  176. public void setSbyxm(String sbyxm) {
  177. this.sbyxm = sbyxm;
  178. }
  179. public Date getSbrq() {
  180. return sbrq;
  181. }
  182. public void setSbrq(Date sbrq) {
  183. this.sbrq = sbrq;
  184. }
  185. public String getShdw() {
  186. return shdw;
  187. }
  188. public void setShdw(String shdw) {
  189. this.shdw = shdw;
  190. }
  191. public Date getShrq() {
  192. return shrq;
  193. }
  194. public void setShrq(Date shrq) {
  195. this.shrq = shrq;
  196. }
  197. public String getLzbz() {
  198. return lzbz;
  199. }
  200. public void setLzbz(String lzbz) {
  201. this.lzbz = lzbz;
  202. }
  203. }