|
@@ -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;
|
|
|
+ private String contact;
|
|
|
+ private String mobile;
|
|
|
+ private String devliver_site;
|
|
|
+ private String end_date;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+}
|