|
@@ -0,0 +1,154 @@
|
|
|
+package net.chenlin.dp.modules.api.vo;
|
|
|
+
|
|
|
+/**
|
|
|
+ * u8客户编辑实体
|
|
|
+ */
|
|
|
+public class ICustomerEdit {
|
|
|
+ private String code;//客户编码
|
|
|
+ private String name;//客户名称
|
|
|
+ private String abbrname;//客户简称
|
|
|
+ private String sort_code;//客户分类码
|
|
|
+ private String industry;//所属行业
|
|
|
+ private String address;//地址
|
|
|
+ private String bank_open;//开户银行
|
|
|
+ private String bank_acc_number;//银行帐号
|
|
|
+ private String phone;//电话
|
|
|
+ private String fax;//传真
|
|
|
+ private String email;//Email地址
|
|
|
+ private String contact;//联系人
|
|
|
+ private String mobile;//手机
|
|
|
+ private String devliver_site;//到货地址
|
|
|
+ private String end_date;//停用日期
|
|
|
+// private String bvencargo;//
|
|
|
+// private String bproxyforeign;//
|
|
|
+// private String bvenservice;//
|
|
|
+ private String memo;//备注
|
|
|
+
|
|
|
+ public String getCode() {
|
|
|
+ return code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCode(String code) {
|
|
|
+ this.code = code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAbbrname() {
|
|
|
+ return abbrname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAbbrname(String abbrname) {
|
|
|
+ this.abbrname = abbrname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSort_code() {
|
|
|
+ return sort_code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSort_code(String sort_code) {
|
|
|
+ this.sort_code = sort_code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIndustry() {
|
|
|
+ return industry;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIndustry(String industry) {
|
|
|
+ this.industry = industry;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAddress() {
|
|
|
+ return address;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAddress(String address) {
|
|
|
+ this.address = address;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBank_open() {
|
|
|
+ return bank_open;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBank_open(String bank_open) {
|
|
|
+ this.bank_open = bank_open;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBank_acc_number() {
|
|
|
+ return bank_acc_number;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBank_acc_number(String bank_acc_number) {
|
|
|
+ this.bank_acc_number = bank_acc_number;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPhone() {
|
|
|
+ return phone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPhone(String phone) {
|
|
|
+ this.phone = phone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFax() {
|
|
|
+ return fax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFax(String fax) {
|
|
|
+ this.fax = fax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEmail() {
|
|
|
+ return email;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEmail(String email) {
|
|
|
+ this.email = email;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getContact() {
|
|
|
+ return contact;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContact(String contact) {
|
|
|
+ this.contact = contact;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMobile() {
|
|
|
+ return mobile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMobile(String mobile) {
|
|
|
+ this.mobile = mobile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDevliver_site() {
|
|
|
+ return devliver_site;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDevliver_site(String devliver_site) {
|
|
|
+ this.devliver_site = devliver_site;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEnd_date() {
|
|
|
+ return end_date;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEnd_date(String end_date) {
|
|
|
+ this.end_date = end_date;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMemo() {
|
|
|
+ return memo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMemo(String memo) {
|
|
|
+ this.memo = memo;
|
|
|
+ }
|
|
|
+}
|