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.
500 lines
15 KiB
500 lines
15 KiB
package com.hfkj.entity;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* bs_device_order
|
|
* @author
|
|
*/
|
|
/**
|
|
*
|
|
* 代码由工具生成
|
|
*
|
|
**/
|
|
public class BsDeviceOrder implements Serializable {
|
|
/**
|
|
* 主键
|
|
*/
|
|
private Long id;
|
|
|
|
/**
|
|
* 订单类型 1:押金 2:购买
|
|
*/
|
|
private Integer orderType;
|
|
|
|
/**
|
|
* 设备类型 1:4G收款音响
|
|
*/
|
|
private Integer deviceType;
|
|
|
|
/**
|
|
* 交易订单号
|
|
*/
|
|
private String orderNo;
|
|
|
|
/**
|
|
* 支付流水号
|
|
*/
|
|
private String paySerialNo;
|
|
|
|
/**
|
|
* 设备数量
|
|
*/
|
|
private Integer deviceNum;
|
|
|
|
/**
|
|
* 订单价格
|
|
*/
|
|
private BigDecimal orderPrice;
|
|
|
|
/**
|
|
* 支付金额
|
|
*/
|
|
private BigDecimal payPrice;
|
|
|
|
/**
|
|
* 支付方式 1: 微信
|
|
*/
|
|
private Integer payType;
|
|
|
|
/**
|
|
* 实付金额
|
|
*/
|
|
private BigDecimal payRealPrice;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
private Date createTime;
|
|
|
|
/**
|
|
* 支付时间
|
|
*/
|
|
private Date payTime;
|
|
|
|
/**
|
|
* 退款时间
|
|
*/
|
|
private Date refundTime;
|
|
|
|
/**
|
|
* 状态 0:删除 1:待支付 2:已支付 3:已完成 4:已退款
|
|
*/
|
|
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 entryPlatformMerNo;
|
|
|
|
private String ext1;
|
|
|
|
private String ext2;
|
|
|
|
private String ext3;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private List<BsDeviceOrderAssign> orderAssignList;
|
|
|
|
public List<BsDeviceOrderAssign> getOrderAssignList() {
|
|
return orderAssignList;
|
|
}
|
|
|
|
public void setOrderAssignList(List<BsDeviceOrderAssign> orderAssignList) {
|
|
this.orderAssignList = orderAssignList;
|
|
}
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Integer getOrderType() {
|
|
return orderType;
|
|
}
|
|
|
|
public void setOrderType(Integer orderType) {
|
|
this.orderType = orderType;
|
|
}
|
|
|
|
public Integer getDeviceType() {
|
|
return deviceType;
|
|
}
|
|
|
|
public void setDeviceType(Integer deviceType) {
|
|
this.deviceType = deviceType;
|
|
}
|
|
|
|
public String getOrderNo() {
|
|
return orderNo;
|
|
}
|
|
|
|
public void setOrderNo(String orderNo) {
|
|
this.orderNo = orderNo;
|
|
}
|
|
|
|
public String getPaySerialNo() {
|
|
return paySerialNo;
|
|
}
|
|
|
|
public void setPaySerialNo(String paySerialNo) {
|
|
this.paySerialNo = paySerialNo;
|
|
}
|
|
|
|
public Integer getDeviceNum() {
|
|
return deviceNum;
|
|
}
|
|
|
|
public void setDeviceNum(Integer deviceNum) {
|
|
this.deviceNum = deviceNum;
|
|
}
|
|
|
|
public BigDecimal getOrderPrice() {
|
|
return orderPrice;
|
|
}
|
|
|
|
public void setOrderPrice(BigDecimal orderPrice) {
|
|
this.orderPrice = orderPrice;
|
|
}
|
|
|
|
public BigDecimal getPayPrice() {
|
|
return payPrice;
|
|
}
|
|
|
|
public void setPayPrice(BigDecimal payPrice) {
|
|
this.payPrice = payPrice;
|
|
}
|
|
|
|
public Integer getPayType() {
|
|
return payType;
|
|
}
|
|
|
|
public void setPayType(Integer payType) {
|
|
this.payType = payType;
|
|
}
|
|
|
|
public BigDecimal getPayRealPrice() {
|
|
return payRealPrice;
|
|
}
|
|
|
|
public void setPayRealPrice(BigDecimal payRealPrice) {
|
|
this.payRealPrice = payRealPrice;
|
|
}
|
|
|
|
public Date getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
|
|
public Date getPayTime() {
|
|
return payTime;
|
|
}
|
|
|
|
public void setPayTime(Date payTime) {
|
|
this.payTime = payTime;
|
|
}
|
|
|
|
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 getEntryPlatformMerNo() {
|
|
return entryPlatformMerNo;
|
|
}
|
|
|
|
public void setEntryPlatformMerNo(String entryPlatformMerNo) {
|
|
this.entryPlatformMerNo = entryPlatformMerNo;
|
|
}
|
|
|
|
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;
|
|
}
|
|
BsDeviceOrder other = (BsDeviceOrder) that;
|
|
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
|
|
&& (this.getOrderType() == null ? other.getOrderType() == null : this.getOrderType().equals(other.getOrderType()))
|
|
&& (this.getDeviceType() == null ? other.getDeviceType() == null : this.getDeviceType().equals(other.getDeviceType()))
|
|
&& (this.getOrderNo() == null ? other.getOrderNo() == null : this.getOrderNo().equals(other.getOrderNo()))
|
|
&& (this.getPaySerialNo() == null ? other.getPaySerialNo() == null : this.getPaySerialNo().equals(other.getPaySerialNo()))
|
|
&& (this.getDeviceNum() == null ? other.getDeviceNum() == null : this.getDeviceNum().equals(other.getDeviceNum()))
|
|
&& (this.getOrderPrice() == null ? other.getOrderPrice() == null : this.getOrderPrice().equals(other.getOrderPrice()))
|
|
&& (this.getPayPrice() == null ? other.getPayPrice() == null : this.getPayPrice().equals(other.getPayPrice()))
|
|
&& (this.getPayType() == null ? other.getPayType() == null : this.getPayType().equals(other.getPayType()))
|
|
&& (this.getPayRealPrice() == null ? other.getPayRealPrice() == null : this.getPayRealPrice().equals(other.getPayRealPrice()))
|
|
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime()))
|
|
&& (this.getPayTime() == null ? other.getPayTime() == null : this.getPayTime().equals(other.getPayTime()))
|
|
&& (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.getEntryPlatformMerNo() == null ? other.getEntryPlatformMerNo() == null : this.getEntryPlatformMerNo().equals(other.getEntryPlatformMerNo()))
|
|
&& (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 + ((getOrderType() == null) ? 0 : getOrderType().hashCode());
|
|
result = prime * result + ((getDeviceType() == null) ? 0 : getDeviceType().hashCode());
|
|
result = prime * result + ((getOrderNo() == null) ? 0 : getOrderNo().hashCode());
|
|
result = prime * result + ((getPaySerialNo() == null) ? 0 : getPaySerialNo().hashCode());
|
|
result = prime * result + ((getDeviceNum() == null) ? 0 : getDeviceNum().hashCode());
|
|
result = prime * result + ((getOrderPrice() == null) ? 0 : getOrderPrice().hashCode());
|
|
result = prime * result + ((getPayPrice() == null) ? 0 : getPayPrice().hashCode());
|
|
result = prime * result + ((getPayType() == null) ? 0 : getPayType().hashCode());
|
|
result = prime * result + ((getPayRealPrice() == null) ? 0 : getPayRealPrice().hashCode());
|
|
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode());
|
|
result = prime * result + ((getPayTime() == null) ? 0 : getPayTime().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 + ((getEntryPlatformMerNo() == null) ? 0 : getEntryPlatformMerNo().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(", orderType=").append(orderType);
|
|
sb.append(", deviceType=").append(deviceType);
|
|
sb.append(", orderNo=").append(orderNo);
|
|
sb.append(", paySerialNo=").append(paySerialNo);
|
|
sb.append(", deviceNum=").append(deviceNum);
|
|
sb.append(", orderPrice=").append(orderPrice);
|
|
sb.append(", payPrice=").append(payPrice);
|
|
sb.append(", payType=").append(payType);
|
|
sb.append(", payRealPrice=").append(payRealPrice);
|
|
sb.append(", createTime=").append(createTime);
|
|
sb.append(", payTime=").append(payTime);
|
|
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(", entryPlatformMerNo=").append(entryPlatformMerNo);
|
|
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();
|
|
}
|
|
}
|
|
|