|
@@ -0,0 +1,292 @@
|
|
|
+package com.iamberry.rst.core.cm;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * wxm 客诉处理公共类
|
|
|
+ */
|
|
|
+public class CustomerCommon implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = -4259088710780733418L;
|
|
|
+ //换新/维修、主键
|
|
|
+ private Integer relationId;
|
|
|
+ //客诉基本信息主键
|
|
|
+ private Integer customerId;
|
|
|
+ //订单id
|
|
|
+ private Integer orderId;
|
|
|
+ //仓储任务(签收id)
|
|
|
+ private Integer signclosedId;
|
|
|
+ //发出Efast订单号
|
|
|
+ private String relationBackEfastOrderId;
|
|
|
+ //寄回状态 1:未寄回 2:已寄回 3:已收货
|
|
|
+ private Integer relationBackStatus;
|
|
|
+ //寄回人姓名
|
|
|
+ private String relationBackName;
|
|
|
+ //寄回人电话
|
|
|
+ private String relationBackTel;
|
|
|
+ //寄回物流公司
|
|
|
+ private String relationBackLogisticsCompany;
|
|
|
+ //寄回物流单号
|
|
|
+ private String relationBackLogisticsNo;
|
|
|
+ //寄回邮费 单位为分
|
|
|
+ private Integer relationBackPostage;
|
|
|
+ //寄回机器编号
|
|
|
+ private String relationBackMachineNo;
|
|
|
+ //寄送状态 1:未寄送 2:已寄送 3:已收货
|
|
|
+ private Integer relationSendStatus;
|
|
|
+ //寄送人姓名
|
|
|
+ private String relationSendName;
|
|
|
+ //寄送人电话
|
|
|
+ private String relationSendTel;
|
|
|
+ //寄送地址-省
|
|
|
+ private Integer provinceNumber;
|
|
|
+ //寄送地址-市
|
|
|
+ private Integer cityNumber;
|
|
|
+ //寄送地址-区
|
|
|
+ private Integer areaNumber;
|
|
|
+ //寄送地址-省市区
|
|
|
+ private String relationSendMergeAddress;
|
|
|
+ //寄送地址-详细地址
|
|
|
+ private String relationSendAddress;
|
|
|
+ //寄送物流公司
|
|
|
+ private String relationSendLogisticsCompany;
|
|
|
+ //寄送物流单号
|
|
|
+ private String relationSendLogisticsNo;
|
|
|
+ //备注
|
|
|
+ private String relationDesc;
|
|
|
+ //状态 1:使用中 2:停用中
|
|
|
+ private Integer relationState;
|
|
|
+ //转账账户
|
|
|
+ private String relationAlipay;
|
|
|
+ //是否已转账邮费 0:不需要 1:已转 2:待转
|
|
|
+ private Integer relationIsTransfer;
|
|
|
+ //创建时间
|
|
|
+ private Date relationCreateTime;
|
|
|
+ // 修改时间,
|
|
|
+ private Date relationUpdateTime;
|
|
|
+
|
|
|
+ public Integer getRelationId() {
|
|
|
+ return relationId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationId(Integer relationId) {
|
|
|
+ this.relationId = relationId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCustomerId() {
|
|
|
+ return customerId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomerId(Integer customerId) {
|
|
|
+ this.customerId = customerId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getOrderId() {
|
|
|
+ return orderId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrderId(Integer orderId) {
|
|
|
+ this.orderId = orderId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSignclosedId() {
|
|
|
+ return signclosedId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSignclosedId(Integer signclosedId) {
|
|
|
+ this.signclosedId = signclosedId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelationBackEfastOrderId() {
|
|
|
+ return relationBackEfastOrderId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationBackEfastOrderId(String relationBackEfastOrderId) {
|
|
|
+ this.relationBackEfastOrderId = relationBackEfastOrderId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getRelationBackStatus() {
|
|
|
+ return relationBackStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationBackStatus(Integer relationBackStatus) {
|
|
|
+ this.relationBackStatus = relationBackStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelationBackName() {
|
|
|
+ return relationBackName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationBackName(String relationBackName) {
|
|
|
+ this.relationBackName = relationBackName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelationBackTel() {
|
|
|
+ return relationBackTel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationBackTel(String relationBackTel) {
|
|
|
+ this.relationBackTel = relationBackTel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelationBackLogisticsCompany() {
|
|
|
+ return relationBackLogisticsCompany;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationBackLogisticsCompany(String relationBackLogisticsCompany) {
|
|
|
+ this.relationBackLogisticsCompany = relationBackLogisticsCompany;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelationBackLogisticsNo() {
|
|
|
+ return relationBackLogisticsNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationBackLogisticsNo(String relationBackLogisticsNo) {
|
|
|
+ this.relationBackLogisticsNo = relationBackLogisticsNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getRelationBackPostage() {
|
|
|
+ return relationBackPostage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationBackPostage(Integer relationBackPostage) {
|
|
|
+ this.relationBackPostage = relationBackPostage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelationBackMachineNo() {
|
|
|
+ return relationBackMachineNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationBackMachineNo(String relationBackMachineNo) {
|
|
|
+ this.relationBackMachineNo = relationBackMachineNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getRelationSendStatus() {
|
|
|
+ return relationSendStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationSendStatus(Integer relationSendStatus) {
|
|
|
+ this.relationSendStatus = relationSendStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelationSendName() {
|
|
|
+ return relationSendName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationSendName(String relationSendName) {
|
|
|
+ this.relationSendName = relationSendName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelationSendTel() {
|
|
|
+ return relationSendTel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationSendTel(String relationSendTel) {
|
|
|
+ this.relationSendTel = relationSendTel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getProvinceNumber() {
|
|
|
+ return provinceNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProvinceNumber(Integer provinceNumber) {
|
|
|
+ this.provinceNumber = provinceNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCityNumber() {
|
|
|
+ return cityNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCityNumber(Integer cityNumber) {
|
|
|
+ this.cityNumber = cityNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getAreaNumber() {
|
|
|
+ return areaNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAreaNumber(Integer areaNumber) {
|
|
|
+ this.areaNumber = areaNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelationSendMergeAddress() {
|
|
|
+ return relationSendMergeAddress;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationSendMergeAddress(String relationSendMergeAddress) {
|
|
|
+ this.relationSendMergeAddress = relationSendMergeAddress;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelationSendAddress() {
|
|
|
+ return relationSendAddress;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationSendAddress(String relationSendAddress) {
|
|
|
+ this.relationSendAddress = relationSendAddress;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelationSendLogisticsCompany() {
|
|
|
+ return relationSendLogisticsCompany;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationSendLogisticsCompany(String relationSendLogisticsCompany) {
|
|
|
+ this.relationSendLogisticsCompany = relationSendLogisticsCompany;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelationSendLogisticsNo() {
|
|
|
+ return relationSendLogisticsNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationSendLogisticsNo(String relationSendLogisticsNo) {
|
|
|
+ this.relationSendLogisticsNo = relationSendLogisticsNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelationDesc() {
|
|
|
+ return relationDesc;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationDesc(String relationDesc) {
|
|
|
+ this.relationDesc = relationDesc;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getRelationState() {
|
|
|
+ return relationState;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationState(Integer relationState) {
|
|
|
+ this.relationState = relationState;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelationAlipay() {
|
|
|
+ return relationAlipay;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationAlipay(String relationAlipay) {
|
|
|
+ this.relationAlipay = relationAlipay;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getRelationIsTransfer() {
|
|
|
+ return relationIsTransfer;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationIsTransfer(Integer relationIsTransfer) {
|
|
|
+ this.relationIsTransfer = relationIsTransfer;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getRelationCreateTime() {
|
|
|
+ return relationCreateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationCreateTime(Date relationCreateTime) {
|
|
|
+ this.relationCreateTime = relationCreateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getRelationUpdateTime() {
|
|
|
+ return relationUpdateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelationUpdateTime(Date relationUpdateTime) {
|
|
|
+ this.relationUpdateTime = relationUpdateTime;
|
|
|
+ }
|
|
|
+}
|