|
|
@@ -135,6 +135,18 @@ public class BillSubmit implements Serializable{
|
|
|
@Column(name = "bs_bill_info", columnDefinition = "text")
|
|
|
private String billInfo;
|
|
|
|
|
|
+ /**
|
|
|
+ * 店铺id
|
|
|
+ */
|
|
|
+ @Column(name = "bs_storeid")
|
|
|
+ private String storeid;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 店铺名称
|
|
|
+ */
|
|
|
+ @Column(name = "bs_store_name")
|
|
|
+ private String storeName;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
|
@@ -287,4 +299,22 @@ public class BillSubmit implements Serializable{
|
|
|
this.billInfo = billInfo;
|
|
|
return this;
|
|
|
}
|
|
|
+
|
|
|
+ public String getStoreid() {
|
|
|
+ return storeid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BillSubmit setStoreid(String storeid) {
|
|
|
+ this.storeid = storeid;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStoreName() {
|
|
|
+ return storeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BillSubmit setStoreName(String storeName) {
|
|
|
+ this.storeName = storeName;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
}
|