Browse Source

git-svn-id: https://192.168.57.71/svn/hbghj@120 201dd7a2-ec1b-f84b-8b06-88221118ff88

ld_liufl 8 years ago
parent
commit
17dcb2b2f1

+ 18 - 0
gkaq/yjpt-java/trunk/java_src/com/jtgh/cjhs/entity/CjhsBaseEntity.java

@@ -0,0 +1,18 @@
+package com.jtgh.cjhs.entity;
+
+import java.io.Serializable;
+
+/**
+ * 
+ * @author 刘福亮
+ *
+ */
+public class CjhsBaseEntity implements Serializable{
+
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = 8321030737539263252L;
+
+	
+}

+ 103 - 0
gkaq/yjpt-java/trunk/java_src/com/jtgh/cjhs/entity/DtxtBwEntity.java

@@ -0,0 +1,103 @@
+package com.jtgh.cjhs.entity;
+
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.Table;
+
+/**
+ * 泊位表
+ * @author 刘福亮
+ *
+ */
+@Entity
+@Table(name = "DTXT_BW")
+public class DtxtBwEntity extends CjhsBaseEntity {
+
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = 7334595383877891661L;
+
+	//泊位代码
+	private String bwdm;
+	//港口代码
+	private String gkdm;
+	//泊位名称
+	private String bwmc;
+	//泊位简称
+	private String bwjc;
+	//所属码头
+	private String ssmt;
+	//所属海事处
+	private String sshsc;
+	//机构代码
+	private String jgdm;
+	//有效标志
+	private  String yxbz;
+	
+	@Id
+	public String getBwdm() {
+		return bwdm;
+	}
+
+	public void setBwdm(String bwdm) {
+		this.bwdm = bwdm;
+	}
+
+	public String getGkdm() {
+		return gkdm;
+	}
+
+	public void setGkdm(String gkdm) {
+		this.gkdm = gkdm;
+	}
+
+	public String getBwmc() {
+		return bwmc;
+	}
+
+	public void setBwmc(String bwmc) {
+		this.bwmc = bwmc;
+	}
+
+	public String getBwjc() {
+		return bwjc;
+	}
+
+	public void setBwjc(String bwjc) {
+		this.bwjc = bwjc;
+	}
+
+	public String getSsmt() {
+		return ssmt;
+	}
+
+	public void setSsmt(String ssmt) {
+		this.ssmt = ssmt;
+	}
+
+	public String getSshsc() {
+		return sshsc;
+	}
+
+	public void setSshsc(String sshsc) {
+		this.sshsc = sshsc;
+	}
+
+	public String getJgdm() {
+		return jgdm;
+	}
+
+	public void setJgdm(String jgdm) {
+		this.jgdm = jgdm;
+	}
+
+	public String getYxbz() {
+		return yxbz;
+	}
+
+	public void setYxbz(String yxbz) {
+		this.yxbz = yxbz;
+	}
+
+}

+ 73 - 0
gkaq/yjpt-java/trunk/java_src/com/jtgh/cjhs/entity/DtxtSjhsjgEntity.java

@@ -0,0 +1,73 @@
+package com.jtgh.cjhs.entity;
+
+import java.util.Date;
+
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.Table;
+
+/**
+ * 省级海事机构
+ * @author 刘福亮
+ *
+ */
+@Entity
+@Table(name = "DTXT_SJHSJG")
+public class DtxtSjhsjgEntity extends CjhsBaseEntity {
+
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = -6603097136757104202L;
+
+	//省级机构代码
+	private String sjjgdm;	
+	//省级机构中文名称
+	private String sjjgzwmc;
+	//省级机构英文名称
+	private String sjjgywmc;
+	//有效标志
+	private String yxbz;
+	//更新标志
+	private String gxbz;
+	//更新时间
+	private Date mrut;
+	
+	@Id
+	public String getSjjgdm() {
+		return sjjgdm;
+	}
+	public void setSjjgdm(String sjjgdm) {
+		this.sjjgdm = sjjgdm;
+	}
+	public String getSjjgzwmc() {
+		return sjjgzwmc;
+	}
+	public void setSjjgzwmc(String sjjgzwmc) {
+		this.sjjgzwmc = sjjgzwmc;
+	}
+	public String getSjjgywmc() {
+		return sjjgywmc;
+	}
+	public void setSjjgywmc(String sjjgywmc) {
+		this.sjjgywmc = sjjgywmc;
+	}
+	public String getYxbz() {
+		return yxbz;
+	}
+	public void setYxbz(String yxbz) {
+		this.yxbz = yxbz;
+	}
+	public String getGxbz() {
+		return gxbz;
+	}
+	public void setGxbz(String gxbz) {
+		this.gxbz = gxbz;
+	}
+	public Date getMrut() {
+		return mrut;
+	}
+	public void setMrut(Date mrut) {
+		this.mrut = mrut;
+	}
+}

+ 54 - 0
gkaq/yjpt-java/trunk/java_src/com/jtgh/cjhs/entity/DtxtXjhsjgEntity.java

@@ -0,0 +1,54 @@
+package com.jtgh.cjhs.entity;
+
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.Table;
+
+/**
+ * 下级海事机构
+ * @author 刘福亮
+ *
+ */
+@Entity
+@Table(name = "DTXT_XJHSJG")
+public class DtxtXjhsjgEntity extends CjhsBaseEntity {
+
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = 4964897241046444685L;
+	//登录机构代码
+	private String dljgdm;
+	//机构代码 
+	private String jgdm;
+	//机构名称 
+	private  String jgmc;
+	//机构等级
+	private  String jgdj;
+	public String getDljgdm() {
+		return dljgdm;
+	}
+	public void setDljgdm(String dljgdm) {
+		this.dljgdm = dljgdm;
+	}
+	@Id
+	public String getJgdm() {
+		return jgdm;
+	}
+	public void setJgdm(String jgdm) {
+		this.jgdm = jgdm;
+	}
+	public String getJgmc() {
+		return jgmc;
+	}
+	public void setJgmc(String jgmc) {
+		this.jgmc = jgmc;
+	}
+	public String getJgdj() {
+		return jgdj;
+	}
+	public void setJgdj(String jgdj) {
+		this.jgdj = jgdj;
+	}
+	
+}

+ 209 - 0
gkaq/yjpt-java/trunk/java_src/com/jtgh/cjhs/entity/DtywCbsbEntity.java

@@ -0,0 +1,209 @@
+package com.jtgh.cjhs.entity;
+
+import java.util.Date;
+
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.Table;
+/**
+ * 危险品申报信息
+ * @author 刘福亮
+ *
+ */
+@Entity
+@Table(name = "DTYW_CBSB")
+public class DtywCbsbEntity extends CjhsBaseEntity {
+
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = 8334216326842548765L;
+	//申报单 编号
+	private  String sbdbh;
+	//申报单类别
+	private  String sbdlb;
+	//船舶编号
+	private  String cbbh;
+	//中文船名
+	private  String zwcm;
+	//英文船名
+	private  String ywcm;
+	//国籍代码
+	private  String gjdm;
+	//总吨
+	private  Double zd;
+	//净吨
+	private  Double jd;
+	//总载重吨
+	private  Double zzzd;
+	//箱位
+	private  Long xw;
+	//港口中文名称
+	private  String gkzwmc;
+	//港口英文名称
+	private  String gkywmc;
+	//作业港口名称
+	private  String zygkmc;
+	//泊位代码
+	private  String bwdm;
+	//到港时间
+	private  Date dgsj;
+	//开始作业时间
+	private  Date kszysj;
+	//结束作业时间
+	private  Date jszysj;
+	//申报单位名称
+	private  String sbdwmc;
+	//申报员姓名
+	private  String sbyxm;
+	//申报日期
+	private  Date sbrq;
+	//审核单位
+	private  String shdw;
+	//审核日期
+	private  Date shrq;
+	//流转标志
+	private  String lzbz;
+	@Id
+	public String getSbdbh() {
+		return sbdbh;
+	}
+	public void setSbdbh(String sbdbh) {
+		this.sbdbh = sbdbh;
+	}
+	public String getSbdlb() {
+		return sbdlb;
+	}
+	public void setSbdlb(String sbdlb) {
+		this.sbdlb = sbdlb;
+	}
+	public String getCbbh() {
+		return cbbh;
+	}
+	public void setCbbh(String cbbh) {
+		this.cbbh = cbbh;
+	}
+	public String getZwcm() {
+		return zwcm;
+	}
+	public void setZwcm(String zwcm) {
+		this.zwcm = zwcm;
+	}
+	public String getYwcm() {
+		return ywcm;
+	}
+	public void setYwcm(String ywcm) {
+		this.ywcm = ywcm;
+	}
+	public String getGjdm() {
+		return gjdm;
+	}
+	public void setGjdm(String gjdm) {
+		this.gjdm = gjdm;
+	}
+	public Double getZd() {
+		return zd;
+	}
+	public void setZd(Double zd) {
+		this.zd = zd;
+	}
+	public Double getJd() {
+		return jd;
+	}
+	public void setJd(Double jd) {
+		this.jd = jd;
+	}
+	public Double getZzzd() {
+		return zzzd;
+	}
+	public void setZzzd(Double zzzd) {
+		this.zzzd = zzzd;
+	}
+	public Long getXw() {
+		return xw;
+	}
+	public void setXw(Long xw) {
+		this.xw = xw;
+	}
+	public String getGkzwmc() {
+		return gkzwmc;
+	}
+	public void setGkzwmc(String gkzwmc) {
+		this.gkzwmc = gkzwmc;
+	}
+	public String getGkywmc() {
+		return gkywmc;
+	}
+	public void setGkywmc(String gkywmc) {
+		this.gkywmc = gkywmc;
+	}
+	public String getZygkmc() {
+		return zygkmc;
+	}
+	public void setZygkmc(String zygkmc) {
+		this.zygkmc = zygkmc;
+	}
+	public String getBwdm() {
+		return bwdm;
+	}
+	public void setBwdm(String bwdm) {
+		this.bwdm = bwdm;
+	}
+	public Date getDgsj() {
+		return dgsj;
+	}
+	public void setDgsj(Date dgsj) {
+		this.dgsj = dgsj;
+	}
+	public Date getKszysj() {
+		return kszysj;
+	}
+	public void setKszysj(Date kszysj) {
+		this.kszysj = kszysj;
+	}
+	public Date getJszysj() {
+		return jszysj;
+	}
+	public void setJszysj(Date jszysj) {
+		this.jszysj = jszysj;
+	}
+	public String getSbdwmc() {
+		return sbdwmc;
+	}
+	public void setSbdwmc(String sbdwmc) {
+		this.sbdwmc = sbdwmc;
+	}
+	public String getSbyxm() {
+		return sbyxm;
+	}
+	public void setSbyxm(String sbyxm) {
+		this.sbyxm = sbyxm;
+	}
+	public Date getSbrq() {
+		return sbrq;
+	}
+	public void setSbrq(Date sbrq) {
+		this.sbrq = sbrq;
+	}
+	public String getShdw() {
+		return shdw;
+	}
+	public void setShdw(String shdw) {
+		this.shdw = shdw;
+	}
+	public Date getShrq() {
+		return shrq;
+	}
+	public void setShrq(Date shrq) {
+		this.shrq = shrq;
+	}
+	public String getLzbz() {
+		return lzbz;
+	}
+	public void setLzbz(String lzbz) {
+		this.lzbz = lzbz;
+	}
+	
+	
+	
+}

+ 93 - 0
gkaq/yjpt-java/trunk/java_src/com/jtgh/cjhs/entity/DtywCbsbgtHwEntity.java

@@ -0,0 +1,93 @@
+package com.jtgh.cjhs.entity;
+
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.Table;
+/**
+ * 船舶申报固体货物
+ * @author 刘福亮
+ *
+ */
+@Entity
+@Table(name = "DTYW_CBSBGT_HW")
+public class DtywCbsbgtHwEntity extends CjhsBaseEntity {
+
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = -6883194039824158796L;
+	//申报单编号
+	private  String sbdbh;
+	//货物类型
+	private  String hwlx;
+	//危规编号
+	private  String wgbh;
+	//货物中文名称
+	private  String zqysmczw;
+	//危险类别
+	private  String wxlb;
+	//总重量
+	private  String zzl;
+	//卸货港中文名称
+	private  String xhgzwmc;
+	//流转标志
+	private  String lzbz;
+	//危险货物标志
+	private  String wxhwbz;
+	@Id
+	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 getXhgzwmc() {
+		return xhgzwmc;
+	}
+	public void setXhgzwmc(String xhgzwmc) {
+		this.xhgzwmc = xhgzwmc;
+	}
+	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;
+	}
+	
+}

+ 94 - 0
gkaq/yjpt-java/trunk/java_src/com/jtgh/cjhs/entity/DtywCbsbszHwEntity.java

@@ -0,0 +1,94 @@
+package com.jtgh.cjhs.entity;
+
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.Table;
+
+/**
+ * 船舶申报散装货物
+ * 
+ * @author 刘福亮
+ * 
+ */
+@Entity
+@Table(name = "DTYW_CBSBSZ_HW")
+public class DtywCbsbszHwEntity extends CjhsBaseEntity {
+
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = -6710618277902814893L;
+	// 申报单编号
+	private String sbdbh;
+	// 货物类型
+	private String hwlx;
+	// 危规编号
+	private String wgbh;
+	// 货物中文名称
+	private String zqysmczw;
+	// 危险类别
+	private String wxlb;
+	// 总重量
+	private Double zzl;
+	// 卸货港中文名称
+	private String xhgzwmc;
+	// 流转标志
+	private String lzbz;
+	// 危险货物标志
+	private  String wxhwbz;
+	@Id
+	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 Double getZzl() {
+		return zzl;
+	}
+	public void setZzl(Double zzl) {
+		this.zzl = zzl;
+	}
+	public String getXhgzwmc() {
+		return xhgzwmc;
+	}
+	public void setXhgzwmc(String xhgzwmc) {
+		this.xhgzwmc = xhgzwmc;
+	}
+	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;
+	}
+}

+ 93 - 0
gkaq/yjpt-java/trunk/java_src/com/jtgh/cjhs/entity/DtywCbsbytHwEntity.java

@@ -0,0 +1,93 @@
+package com.jtgh.cjhs.entity;
+
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.Table;
+/**
+ * 船舶申报液体货物
+ * @author 刘福亮
+ *
+ */
+@Entity
+@Table(name = "DTYW_CBSBYT_HW")
+public class DtywCbsbytHwEntity extends CjhsBaseEntity {
+
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = -2615780504840628752L;
+
+	// 申报单编号
+	private String sbdbh;
+	// 货物类型
+	private String hwlx;
+	// 危规编号
+	private String wgbh;
+	// 货物中文名称
+	private String zqysmczw;
+	// 危险类别
+	private String wxlb;
+	// 总重量
+	private Double sl;
+	// 卸货港中文名称
+	private String xhgzwmc;
+	// 流转标志
+	private String lzbz;
+	// 危险货物标志
+	private  String wxhwbz;
+	@Id
+	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 Double getSl() {
+		return sl;
+	}
+	public void setSl(Double sl) {
+		this.sl = sl;
+	}
+	public String getXhgzwmc() {
+		return xhgzwmc;
+	}
+	public void setXhgzwmc(String xhgzwmc) {
+		this.xhgzwmc = xhgzwmc;
+	}
+	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;
+	}
+}

+ 46 - 0
gkaq/yjpt-java/trunk/java_src/com/jtgh/cjhs/entity/ZtzdCbzlViewEntity.java

@@ -0,0 +1,46 @@
+package com.jtgh.cjhs.entity;
+
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.Table;
+/**
+ * 船舶种类字典
+ * @author 刘福亮
+ *
+ */
+@Entity
+@Table(name = "ZTZD_CBZL_VIEW")
+public class ZtzdCbzlViewEntity extends CjhsBaseEntity {
+
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = 4886151749092532252L;
+
+	//船中文名称
+	private  String cbzlzemc;
+	//英文船名
+	private  String zbzlywmc;
+	//有效标志
+	private  String yxbz;
+	@Id
+	public String getCbzlzemc() {
+		return cbzlzemc;
+	}
+	public void setCbzlzemc(String cbzlzemc) {
+		this.cbzlzemc = cbzlzemc;
+	}
+	public String getZbzlywmc() {
+		return zbzlywmc;
+	}
+	public void setZbzlywmc(String zbzlywmc) {
+		this.zbzlywmc = zbzlywmc;
+	}
+	public String getYxbz() {
+		return yxbz;
+	}
+	public void setYxbz(String yxbz) {
+		this.yxbz = yxbz;
+	}
+
+}

+ 53 - 0
gkaq/yjpt-java/trunk/java_src/com/jtgh/cjhs/entity/ZtzdGjViewEntity.java

@@ -0,0 +1,53 @@
+package com.jtgh.cjhs.entity;
+
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.Table;
+/**
+ * 国籍字典表
+ * @author 刘福亮
+ *
+ */
+@Entity
+@Table(name = "ZTZD_GJ_VIEW")
+public class ZtzdGjViewEntity extends CjhsBaseEntity {
+
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = 632818078595594730L;
+
+	//国籍代码
+	private  String gjdm;
+	//国籍中文名称
+	private  String gjzwmc;
+	//国籍英文名称
+	private  String gjywmc;
+	//有效标志
+	private  String yxbz;
+	@Id
+	public String getGjdm() {
+		return gjdm;
+	}
+	public void setGjdm(String gjdm) {
+		this.gjdm = gjdm;
+	}
+	public String getGjzwmc() {
+		return gjzwmc;
+	}
+	public void setGjzwmc(String gjzwmc) {
+		this.gjzwmc = gjzwmc;
+	}
+	public String getGjywmc() {
+		return gjywmc;
+	}
+	public void setGjywmc(String gjywmc) {
+		this.gjywmc = gjywmc;
+	}
+	public String getYxbz() {
+		return yxbz;
+	}
+	public void setYxbz(String yxbz) {
+		this.yxbz = yxbz;
+	}
+}

+ 53 - 0
gkaq/yjpt-java/trunk/java_src/com/jtgh/cjhs/entity/ZtzdGkmlViewEntity.java

@@ -0,0 +1,53 @@
+package com.jtgh.cjhs.entity;
+
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.Table;
+/**
+ *港口名录字典表
+ * @author 刘福亮
+ *
+ */
+@Entity
+@Table(name = "ZTZD_GKML_VIEW")
+public class ZtzdGkmlViewEntity extends CjhsBaseEntity  {
+
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = -5933097578381919555L;
+	// 港口代码
+	private  String gkdm;
+	//港口名称
+	private  String gkmc;
+	//英文港口名称
+	private  String ywgkmc;
+	//有效 标志
+	private  String yxbz;
+	@Id
+	public String getGkdm() {
+		return gkdm;
+	}
+	public void setGkdm(String gkdm) {
+		this.gkdm = gkdm;
+	}
+	public String getGkmc() {
+		return gkmc;
+	}
+	public void setGkmc(String gkmc) {
+		this.gkmc = gkmc;
+	}
+	public String getYwgkmc() {
+		return ywgkmc;
+	}
+	public void setYwgkmc(String ywgkmc) {
+		this.ywgkmc = ywgkmc;
+	}
+	public String getYxbz() {
+		return yxbz;
+	}
+	public void setYxbz(String yxbz) {
+		this.yxbz = yxbz;
+	}
+	
+}