You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
471 lines
13 KiB
471 lines
13 KiB
package com.hai.entity;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* bs_device_order_refund
|
|
* @author
|
|
*/
|
|
/**
|
|
*
|
|
* 代码由工具生成
|
|
*
|
|
**/
|
|
public class BsDeviceOrderRefund implements Serializable {
|
|
/**
|
|
* 主键
|
|
*/
|
|
private Long id;
|
|
|
|
/**
|
|
* 退款订单号
|
|
*/
|
|
private String refundOrderNo;
|
|
|
|
/**
|
|
* 交易订单id
|
|
*/
|
|
private Long orderId;
|
|
|
|
/**
|
|
* 交易订单号
|
|
*/
|
|
private String orderNo;
|
|
|
|
/**
|
|
* 订单类型 1:4G音响押金
|
|
*/
|
|
private Integer orderType;
|
|
|
|
/**
|
|
* 订单分配id
|
|
*/
|
|
private Long orderAssignId;
|
|
|
|
/**
|
|
* 设备id
|
|
*/
|
|
private Long deviceId;
|
|
|
|
/**
|
|
* 设备编号
|
|
*/
|
|
private String deivceNo;
|
|
|
|
/**
|
|
* 退款金额
|
|
*/
|
|
private BigDecimal refund
|
|
|
|
Price;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
private Date createTime;
|
|
|
|
/**
|
|
* 退款时间
|
|
*/
|
|
private Date refundTime;
|
|
|
|
/**
|
|
* 状态 0:删除 1:退款中 2:退款成功
|
|
*/
|
|
private Integer status;
|
|
|
|
/**
|
|
* 公司id
|
|
*/
|
|
private Long companyId;
|
|
|
|
/**
|
|
* 公司名称
|
|
*/
|
|
private String companyName;
|
|
|
|
/**
|
|
* 代理商id
|
|
*/
|
|
private Long agentId;
|
|
|
|
/**
|
|
* 代理商名称
|
|
*/
|
|
private String agentName;
|
|
|
|
/**
|
|
* 业务员id
|
|
*/
|
|
private Long salesmanId;
|
|
|
|
/**
|
|
* 业务名称
|
|
*/
|
|
private String salesmanName;
|
|
|
|
/**
|
|
* 商户id
|
|
*/
|
|
private Long merId;
|
|
|
|
/**
|
|
* 商户名称
|
|
*/
|
|
private String merName;
|
|
|
|
/**
|
|
* 门店id
|
|
*/
|
|
private Long storeId;
|
|
|
|
/**
|
|
* 门店名称
|
|
*/
|
|
private String storeName;
|
|
|
|
private String ext1;
|
|
|
|
private String ext2;
|
|
|
|
private String ext3;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getRefundOrderNo() {
|
|
return refundOrderNo;
|
|
}
|
|
|
|
public void setRefundOrderNo(String refundOrderNo) {
|
|
this.refundOrderNo = refundOrderNo;
|
|
}
|
|
|
|
public Long getOrderId() {
|
|
return orderId;
|
|
}
|
|
|
|
public void setOrderId(Long orderId) {
|
|
this.orderId = orderId;
|
|
}
|
|
|
|
public String getOrderNo() {
|
|
return orderNo;
|
|
}
|
|
|
|
public void setOrderNo(String orderNo) {
|
|
this.orderNo = orderNo;
|
|
}
|
|
|
|
public Integer getOrderType() {
|
|
return orderType;
|
|
}
|
|
|
|
public void setOrderType(Integer orderType) {
|
|
this.orderType = orderType;
|
|
}
|
|
|
|
public Long getOrderAssignId() {
|
|
return orderAssignId;
|
|
}
|
|
|
|
public void setOrderAssignId(Long orderAssignId) {
|
|
this.orderAssignId = orderAssignId;
|
|
}
|
|
|
|
public Long getDeviceId() {
|
|
return deviceId;
|
|
}
|
|
|
|
public void setDeviceId(Long deviceId) {
|
|
this.deviceId = deviceId;
|
|
}
|
|
|
|
public String getDeivceNo() {
|
|
return deivceNo;
|
|
}
|
|
|
|
public void setDeivceNo(String deivceNo) {
|
|
this.deivceNo = deivceNo;
|
|
}
|
|
|
|
public BigDecimal getRefund
|
|
|
|
Price() {
|
|
return refund
|
|
|
|
Price;
|
|
}
|
|
|
|
public void setRefund
|
|
|
|
Price(BigDecimal refund
|
|
|
|
Price) {
|
|
this.refund
|
|
|
|
Price = refund
|
|
|
|
Price;
|
|
}
|
|
|
|
public Date getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
|
|
public Date getRefundTime() {
|
|
return refundTime;
|
|
}
|
|
|
|
public void setRefundTime(Date refundTime) {
|
|
this.refundTime = refundTime;
|
|
}
|
|
|
|
public Integer getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(Integer status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public Long getCompanyId() {
|
|
return companyId;
|
|
}
|
|
|
|
public void setCompanyId(Long companyId) {
|
|
this.companyId = companyId;
|
|
}
|
|
|
|
public String getCompanyName() {
|
|
return companyName;
|
|
}
|
|
|
|
public void setCompanyName(String companyName) {
|
|
this.companyName = companyName;
|
|
}
|
|
|
|
public Long getAgentId() {
|
|
return agentId;
|
|
}
|
|
|
|
public void setAgentId(Long agentId) {
|
|
this.agentId = agentId;
|
|
}
|
|
|
|
public String getAgentName() {
|
|
return agentName;
|
|
}
|
|
|
|
public void setAgentName(String agentName) {
|
|
this.agentName = agentName;
|
|
}
|
|
|
|
public Long getSalesmanId() {
|
|
return salesmanId;
|
|
}
|
|
|
|
public void setSalesmanId(Long salesmanId) {
|
|
this.salesmanId = salesmanId;
|
|
}
|
|
|
|
public String getSalesmanName() {
|
|
return salesmanName;
|
|
}
|
|
|
|
public void setSalesmanName(String salesmanName) {
|
|
this.salesmanName = salesmanName;
|
|
}
|
|
|
|
public Long getMerId() {
|
|
return merId;
|
|
}
|
|
|
|
public void setMerId(Long merId) {
|
|
this.merId = merId;
|
|
}
|
|
|
|
public String getMerName() {
|
|
return merName;
|
|
}
|
|
|
|
public void setMerName(String merName) {
|
|
this.merName = merName;
|
|
}
|
|
|
|
public Long getStoreId() {
|
|
return storeId;
|
|
}
|
|
|
|
public void setStoreId(Long storeId) {
|
|
this.storeId = storeId;
|
|
}
|
|
|
|
public String getStoreName() {
|
|
return storeName;
|
|
}
|
|
|
|
public void setStoreName(String storeName) {
|
|
this.storeName = storeName;
|
|
}
|
|
|
|
public String getExt1() {
|
|
return ext1;
|
|
}
|
|
|
|
public void setExt1(String ext1) {
|
|
this.ext1 = ext1;
|
|
}
|
|
|
|
public String getExt2() {
|
|
return ext2;
|
|
}
|
|
|
|
public void setExt2(String ext2) {
|
|
this.ext2 = ext2;
|
|
}
|
|
|
|
public String getExt3() {
|
|
return ext3;
|
|
}
|
|
|
|
public void setExt3(String ext3) {
|
|
this.ext3 = ext3;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object that) {
|
|
if (this == that) {
|
|
return true;
|
|
}
|
|
if (that == null) {
|
|
return false;
|
|
}
|
|
if (getClass() != that.getClass()) {
|
|
return false;
|
|
}
|
|
BsDeviceOrderRefund other = (BsDeviceOrderRefund) that;
|
|
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
|
|
&& (this.getRefundOrderNo() == null ? other.getRefundOrderNo() == null : this.getRefundOrderNo().equals(other.getRefundOrderNo()))
|
|
&& (this.getOrderId() == null ? other.getOrderId() == null : this.getOrderId().equals(other.getOrderId()))
|
|
&& (this.getOrderNo() == null ? other.getOrderNo() == null : this.getOrderNo().equals(other.getOrderNo()))
|
|
&& (this.getOrderType() == null ? other.getOrderType() == null : this.getOrderType().equals(other.getOrderType()))
|
|
&& (this.getOrderAssignId() == null ? other.getOrderAssignId() == null : this.getOrderAssignId().equals(other.getOrderAssignId()))
|
|
&& (this.getDeviceId() == null ? other.getDeviceId() == null : this.getDeviceId().equals(other.getDeviceId()))
|
|
&& (this.getDeivceNo() == null ? other.getDeivceNo() == null : this.getDeivceNo().equals(other.getDeivceNo()))
|
|
&& (this.getRefund
|
|
|
|
Price() == null ? other.getRefund
|
|
|
|
Price() == null : this.getRefund
|
|
|
|
Price().equals(other.getRefund
|
|
|
|
Price()))
|
|
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime()))
|
|
&& (this.getRefundTime() == null ? other.getRefundTime() == null : this.getRefundTime().equals(other.getRefundTime()))
|
|
&& (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus()))
|
|
&& (this.getCompanyId() == null ? other.getCompanyId() == null : this.getCompanyId().equals(other.getCompanyId()))
|
|
&& (this.getCompanyName() == null ? other.getCompanyName() == null : this.getCompanyName().equals(other.getCompanyName()))
|
|
&& (this.getAgentId() == null ? other.getAgentId() == null : this.getAgentId().equals(other.getAgentId()))
|
|
&& (this.getAgentName() == null ? other.getAgentName() == null : this.getAgentName().equals(other.getAgentName()))
|
|
&& (this.getSalesmanId() == null ? other.getSalesmanId() == null : this.getSalesmanId().equals(other.getSalesmanId()))
|
|
&& (this.getSalesmanName() == null ? other.getSalesmanName() == null : this.getSalesmanName().equals(other.getSalesmanName()))
|
|
&& (this.getMerId() == null ? other.getMerId() == null : this.getMerId().equals(other.getMerId()))
|
|
&& (this.getMerName() == null ? other.getMerName() == null : this.getMerName().equals(other.getMerName()))
|
|
&& (this.getStoreId() == null ? other.getStoreId() == null : this.getStoreId().equals(other.getStoreId()))
|
|
&& (this.getStoreName() == null ? other.getStoreName() == null : this.getStoreName().equals(other.getStoreName()))
|
|
&& (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1()))
|
|
&& (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2()))
|
|
&& (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3()));
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
final int prime = 31;
|
|
int result = 1;
|
|
result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
|
|
result = prime * result + ((getRefundOrderNo() == null) ? 0 : getRefundOrderNo().hashCode());
|
|
result = prime * result + ((getOrderId() == null) ? 0 : getOrderId().hashCode());
|
|
result = prime * result + ((getOrderNo() == null) ? 0 : getOrderNo().hashCode());
|
|
result = prime * result + ((getOrderType() == null) ? 0 : getOrderType().hashCode());
|
|
result = prime * result + ((getOrderAssignId() == null) ? 0 : getOrderAssignId().hashCode());
|
|
result = prime * result + ((getDeviceId() == null) ? 0 : getDeviceId().hashCode());
|
|
result = prime * result + ((getDeivceNo() == null) ? 0 : getDeivceNo().hashCode());
|
|
result = prime * result + ((getRefund
|
|
|
|
Price() == null) ? 0 : getRefund
|
|
|
|
Price().hashCode());
|
|
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode());
|
|
result = prime * result + ((getRefundTime() == null) ? 0 : getRefundTime().hashCode());
|
|
result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode());
|
|
result = prime * result + ((getCompanyId() == null) ? 0 : getCompanyId().hashCode());
|
|
result = prime * result + ((getCompanyName() == null) ? 0 : getCompanyName().hashCode());
|
|
result = prime * result + ((getAgentId() == null) ? 0 : getAgentId().hashCode());
|
|
result = prime * result + ((getAgentName() == null) ? 0 : getAgentName().hashCode());
|
|
result = prime * result + ((getSalesmanId() == null) ? 0 : getSalesmanId().hashCode());
|
|
result = prime * result + ((getSalesmanName() == null) ? 0 : getSalesmanName().hashCode());
|
|
result = prime * result + ((getMerId() == null) ? 0 : getMerId().hashCode());
|
|
result = prime * result + ((getMerName() == null) ? 0 : getMerName().hashCode());
|
|
result = prime * result + ((getStoreId() == null) ? 0 : getStoreId().hashCode());
|
|
result = prime * result + ((getStoreName() == null) ? 0 : getStoreName().hashCode());
|
|
result = prime * result + ((getExt1() == null) ? 0 : getExt1().hashCode());
|
|
result = prime * result + ((getExt2() == null) ? 0 : getExt2().hashCode());
|
|
result = prime * result + ((getExt3() == null) ? 0 : getExt3().hashCode());
|
|
return result;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append(getClass().getSimpleName());
|
|
sb.append(" [");
|
|
sb.append("Hash = ").append(hashCode());
|
|
sb.append(", id=").append(id);
|
|
sb.append(", refundOrderNo=").append(refundOrderNo);
|
|
sb.append(", orderId=").append(orderId);
|
|
sb.append(", orderNo=").append(orderNo);
|
|
sb.append(", orderType=").append(orderType);
|
|
sb.append(", orderAssignId=").append(orderAssignId);
|
|
sb.append(", deviceId=").append(deviceId);
|
|
sb.append(", deivceNo=").append(deivceNo);
|
|
sb.append(", refund
|
|
|
|
Price=").append(refund
|
|
|
|
Price);
|
|
sb.append(", createTime=").append(createTime);
|
|
sb.append(", refundTime=").append(refundTime);
|
|
sb.append(", status=").append(status);
|
|
sb.append(", companyId=").append(companyId);
|
|
sb.append(", companyName=").append(companyName);
|
|
sb.append(", agentId=").append(agentId);
|
|
sb.append(", agentName=").append(agentName);
|
|
sb.append(", salesmanId=").append(salesmanId);
|
|
sb.append(", salesmanName=").append(salesmanName);
|
|
sb.append(", merId=").append(merId);
|
|
sb.append(", merName=").append(merName);
|
|
sb.append(", storeId=").append(storeId);
|
|
sb.append(", storeName=").append(storeName);
|
|
sb.append(", ext1=").append(ext1);
|
|
sb.append(", ext2=").append(ext2);
|
|
sb.append(", ext3=").append(ext3);
|
|
sb.append(", serialVersionUID=").append(serialVersionUID);
|
|
sb.append("]");
|
|
return sb.toString();
|
|
}
|
|
} |