|
@@ -134,6 +134,12 @@ public class Vendor implements Serializable {
|
|
|
@Column(name = "ve_custswitch")
|
|
@Column(name = "ve_custswitch")
|
|
|
private Short custswitch;
|
|
private Short custswitch;
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 付款方式(保存最新的,方便下次载入)
|
|
|
|
|
+ */
|
|
|
|
|
+ @Column(name = "ve_paymethod")
|
|
|
|
|
+ private String paymethod;
|
|
|
|
|
+
|
|
|
public Long getId() {
|
|
public Long getId() {
|
|
|
return id;
|
|
return id;
|
|
|
}
|
|
}
|
|
@@ -262,6 +268,14 @@ public class Vendor implements Serializable {
|
|
|
this.custswitch = custswitch;
|
|
this.custswitch = custswitch;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ public String getPaymethod() {
|
|
|
|
|
+ return paymethod;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setPaymethod(String paymethod) {
|
|
|
|
|
+ this.paymethod = paymethod;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
@Override
|
|
@Override
|
|
|
public String toString() {
|
|
public String toString() {
|
|
|
return this.vendorEnterprise.getEnName();
|
|
return this.vendorEnterprise.getEnName();
|