|
|
@@ -129,6 +129,12 @@ public class BillSubmit implements Serializable{
|
|
|
@Column(name = "bs_status")
|
|
|
private Integer status;
|
|
|
|
|
|
+ /**
|
|
|
+ * 发票信息
|
|
|
+ */
|
|
|
+ @Column(name = "bs_bill_info", columnDefinition = "text")
|
|
|
+ private String billInfo;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
|
@@ -272,4 +278,13 @@ public class BillSubmit implements Serializable{
|
|
|
public void setStatus(Integer status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
+
|
|
|
+ public String getBillInfo() {
|
|
|
+ return billInfo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BillSubmit setBillInfo(String billInfo) {
|
|
|
+ this.billInfo = billInfo;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
}
|