1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package com.jtgh.cjhs.entity;
- import javax.persistence.Entity;
- import javax.persistence.Table;
- /**
- * 船舶申报固体货物
- * @author 刘福亮
- *
- */
- @Entity
- @Table(name = "DTYW_CBSBGT_HW")
- public class DtywCbsbgtHwEntity {
- //申报单编号
- private String sbdbh;
- //货物类型
- private String hwlx;
- //危规编号
- private String wgbh;
- //货物中文名称
- private String zqysmczw;
- //危险类别
- private String wxlb;
- //总重量
- private String zzl;
- //流转标志
- private String lzbz;
- //危险货物标志
- private String wxhwbz;
- public String getSbdbh() {
- return sbdbh;
- }
- public void setSbdbh(String sbdbh) {
- this.sbdbh = sbdbh;
- }
- public String getHwlx() {
- return hwlx;
- }
- public void setHwlx(String hwlx) {
- this.hwlx = hwlx;
- }
- public String getWgbh() {
- return wgbh;
- }
- public void setWgbh(String wgbh) {
- this.wgbh = wgbh;
- }
- public String getZqysmczw() {
- return zqysmczw;
- }
- public void setZqysmczw(String zqysmczw) {
- this.zqysmczw = zqysmczw;
- }
- public String getWxlb() {
- return wxlb;
- }
- public void setWxlb(String wxlb) {
- this.wxlb = wxlb;
- }
- public String getLzbz() {
- return lzbz;
- }
- public void setLzbz(String lzbz) {
- this.lzbz = lzbz;
- }
- public String getWxhwbz() {
- return wxhwbz;
- }
- public void setWxhwbz(String wxhwbz) {
- this.wxhwbz = wxhwbz;
- }
- public String getZzl() {
- return zzl;
- }
- public void setZzl(String zzl) {
- this.zzl = zzl;
- }
-
- private Long bsxh;
-
- private Long xh;
-
- public Long getBsxh() {
- return bsxh;
- }
- public void setBsxh(Long bsxh) {
- this.bsxh = bsxh;
- }
- public Long getXh() {
- return xh;
- }
- public void setXh(Long xh) {
- this.xh = xh;
- }
- }
|