|
|
@@ -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;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|