|
@@ -0,0 +1,138 @@
|
|
|
+package com.iamberry.rst.core.customer;
|
|
|
+
|
|
|
+import javax.xml.crypto.Data;
|
|
|
+import java.io.DataInput;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+
|
|
|
+ * Created by Administrator on 2018/4/19.
|
|
|
+ */
|
|
|
+public class CustomerBasicInfo implements Serializable{
|
|
|
+ private static final long serialVersionUID = 4003986770939403758L;
|
|
|
+ private Integer customerId;
|
|
|
+ private String customerName;
|
|
|
+ private String customerIndustry;
|
|
|
+ private Integer customerType;
|
|
|
+ private Integer cooperativeState;
|
|
|
+ private String customerProvinceCode;
|
|
|
+ private String customerCityCode;
|
|
|
+ private String customerAddress;
|
|
|
+ private Integer customerStatus;
|
|
|
+ private Data createDate;
|
|
|
+ private Data updateDate;
|
|
|
+ private Integer idCreateBy;
|
|
|
+ private Integer idUpdateBy;
|
|
|
+ private String customerRemarks;
|
|
|
+
|
|
|
+ public Integer getCustomerId() {
|
|
|
+ return customerId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomerId(Integer customerId) {
|
|
|
+ this.customerId = customerId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCustomerName() {
|
|
|
+ return customerName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomerName(String customerName) {
|
|
|
+ this.customerName = customerName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCustomerIndustry() {
|
|
|
+ return customerIndustry;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomerIndustry(String customerIndustry) {
|
|
|
+ this.customerIndustry = customerIndustry;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCustomerType() {
|
|
|
+ return customerType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomerType(Integer customerType) {
|
|
|
+ this.customerType = customerType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCooperativeState() {
|
|
|
+ return cooperativeState;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCooperativeState(Integer cooperativeState) {
|
|
|
+ this.cooperativeState = cooperativeState;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCustomerProvinceCode() {
|
|
|
+ return customerProvinceCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomerProvinceCode(String customerProvinceCode) {
|
|
|
+ this.customerProvinceCode = customerProvinceCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCustomerCityCode() {
|
|
|
+ return customerCityCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomerCityCode(String customerCityCode) {
|
|
|
+ this.customerCityCode = customerCityCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCustomerAddress() {
|
|
|
+ return customerAddress;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomerAddress(String customerAddress) {
|
|
|
+ this.customerAddress = customerAddress;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCustomerStatus() {
|
|
|
+ return customerStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomerStatus(Integer customerStatus) {
|
|
|
+ this.customerStatus = customerStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Data getCreateDate() {
|
|
|
+ return createDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateDate(Data createDate) {
|
|
|
+ this.createDate = createDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Data getUpdateDate() {
|
|
|
+ return updateDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateDate(Data updateDate) {
|
|
|
+ this.updateDate = updateDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getIdCreateBy() {
|
|
|
+ return idCreateBy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIdCreateBy(Integer idCreateBy) {
|
|
|
+ this.idCreateBy = idCreateBy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getIdUpdateBy() {
|
|
|
+ return idUpdateBy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIdUpdateBy(Integer idUpdateBy) {
|
|
|
+ this.idUpdateBy = idUpdateBy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCustomerRemarks() {
|
|
|
+ return customerRemarks;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomerRemarks(String customerRemarks) {
|
|
|
+ this.customerRemarks = customerRemarks;
|
|
|
+ }
|
|
|
+}
|