|
|
@@ -103,6 +103,11 @@ public class PurchaseProofingItemDone {
|
|
|
*/
|
|
|
@Column(name = "ppi_sendstatus")
|
|
|
private Short sendStatus;
|
|
|
+ /**
|
|
|
+ * 打印次数
|
|
|
+ */
|
|
|
+ @Column(name = "ppi_print")
|
|
|
+ private Short print;
|
|
|
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
@@ -216,5 +221,13 @@ public class PurchaseProofingItemDone {
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
|
|
+ public Short getPrint() {
|
|
|
+ return print;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPrint(Short print) {
|
|
|
+ this.print = print;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|