Browse Source

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@414 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d

administrator 11 years ago
parent
commit
ed13ead8d5

+ 13 - 0
src/main/java/com/uas/platform/b2b/erp/model/PurchaseNotify.java

@@ -0,0 +1,13 @@
+package com.uas.platform.b2b.erp.model;
+
+/**
+ * 买家ERP系统的送货提醒单(提醒卖家发货)
+ * 
+ * @author yingp
+ * 
+ */
+public class PurchaseNotify {
+
+	
+	
+}

+ 11 - 0
src/main/java/com/uas/platform/b2b/erp/model/SaleNotifyDown.java

@@ -0,0 +1,11 @@
+package com.uas.platform.b2b.erp.model;
+
+/**
+ * 卖家ERP系统的客户送货提醒单
+ * 
+ * @author yingp
+ * 
+ */
+public class SaleNotifyDown {
+
+}

+ 55 - 0
src/main/java/com/uas/platform/b2b/model/PurchaseNotice.java

@@ -0,0 +1,55 @@
+package com.uas.platform.b2b.model;
+
+import java.io.Serializable;
+
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.SequenceGenerator;
+import javax.persistence.Table;
+
+/**
+ * 平台里面,以供应商的角度来查看客户送货提醒
+ * 
+ * @author yingp
+ *
+ */
+@Table(name = "purc$notice")
+@Entity
+public class PurchaseNotice implements Serializable {
+
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = 4637910155625380065L;
+	@Id
+	@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "purc$notice_gen")
+	@SequenceGenerator(name = "purc$notice_gen", sequenceName = "purc$notice_seq", allocationSize = 1)
+	@Column(name = "pn_id")
+	private Long id;
+
+	/**
+	 * 送货提醒单所属企业UU
+	 */
+	@Column(name = "pn_enuu")
+	private Long enUU;
+
+	public Long getId() {
+		return id;
+	}
+
+	public void setId(Long id) {
+		this.id = id;
+	}
+
+	public Long getEnUU() {
+		return enUU;
+	}
+
+	public void setEnUU(Long enUU) {
+		this.enUU = enUU;
+	}
+
+}

+ 56 - 0
src/main/java/com/uas/platform/b2b/model/SaleSend.java

@@ -0,0 +1,56 @@
+package com.uas.platform.b2b.model;
+
+import java.io.Serializable;
+
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.SequenceGenerator;
+import javax.persistence.Table;
+
+/**
+ * 平台里面,供应商发起的发货单
+ * 
+ * @author yingp
+ *
+ */
+@Table(name = "sale$send")
+@Entity
+public class SaleSend implements Serializable {
+
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = 3659150923247159570L;
+
+	@Id
+	@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "sale$send_gen")
+	@SequenceGenerator(name = "sale$send_gen", sequenceName = "sale$send_seq", allocationSize = 1)
+	@Column(name = "ss_id")
+	private Long id;
+
+	/**
+	 * 发货单 所属企业UU
+	 */
+	@Column(name = "ss_enuu")
+	private Long enUU;
+
+	public Long getId() {
+		return id;
+	}
+
+	public void setId(Long id) {
+		this.id = id;
+	}
+
+	public Long getEnUU() {
+		return enUU;
+	}
+
+	public void setEnUU(Long enUU) {
+		this.enUU = enUU;
+	}
+
+}