|
@@ -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;//客户id(主键)
|
|
|
+ private String customerName;//客户名称
|
|
|
+ private String customerIndustry;//客户行业
|
|
|
+ private Integer customerType;//客户类型 1:个人 2:企业
|
|
|
+ private Integer cooperativeState;//合作进度1:意向合作 2:已经合作 3:停止合作
|
|
|
+ private String customerProvinceCode;//客户所在省份代号
|
|
|
+ private String customerCityCode;//客户所在城市代号
|
|
|
+ private String customerAddress;//客户详细地址
|
|
|
+ private Integer customerStatus;//状态 1:已删除 2:正常
|
|
|
+ private Data createDate;//创建时间
|
|
|
+ private Data updateDate;//修改时间
|
|
|
+ private Integer idCreateBy;//创建人Id
|
|
|
+ private Integer idUpdateBy;//修改人Id
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+}
|