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.
296 lines
8.8 KiB
296 lines
8.8 KiB
package com.hai.entity;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
|
|
/**
|
|
* high_child_order
|
|
* @author
|
|
*/
|
|
/**
|
|
*
|
|
* 代码由工具生成
|
|
*
|
|
**/
|
|
public class HighChildOrder implements Serializable {
|
|
/**
|
|
* 主键ID
|
|
*/
|
|
private Long id;
|
|
|
|
/**
|
|
* 订单id
|
|
*/
|
|
private Long orderId;
|
|
|
|
/**
|
|
* 商品类型 1:卡卷
|
|
*/
|
|
private Integer goodsType;
|
|
|
|
/**
|
|
* 商品id
|
|
*/
|
|
private Long goodsId;
|
|
|
|
/**
|
|
* 商品的名称
|
|
*/
|
|
private String goodsName;
|
|
|
|
/**
|
|
* 商品图片
|
|
*/
|
|
private String goodsImg;
|
|
|
|
/**
|
|
* 商品规格名称
|
|
*/
|
|
private String goodsSpecName;
|
|
|
|
/**
|
|
* 商品的单价
|
|
*/
|
|
private BigDecimal goodsPrice;
|
|
|
|
/**
|
|
* 商品的数量
|
|
*/
|
|
private Integer saleCount;
|
|
|
|
/**
|
|
* 商品的价格(单价*数量)
|
|
*/
|
|
private BigDecimal totalPrice;
|
|
|
|
/**
|
|
* 是否是赠品 0:否 1:是
|
|
*/
|
|
private Boolean giveawayType;
|
|
|
|
/**
|
|
* 子订单状态:1 待支付 2 已支付 3.已完成 4. 已退款 5.已取消
|
|
*/
|
|
private Integer childOrdeStatus;
|
|
|
|
/**
|
|
* 评价状态: 0:未评价 1:已评价
|
|
*/
|
|
private Integer praiseStatus;
|
|
|
|
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 Long getOrderId() {
|
|
return orderId;
|
|
}
|
|
|
|
public void setOrderId(Long orderId) {
|
|
this.orderId = orderId;
|
|
}
|
|
|
|
public Integer getGoodsType() {
|
|
return goodsType;
|
|
}
|
|
|
|
public void setGoodsType(Integer goodsType) {
|
|
this.goodsType = goodsType;
|
|
}
|
|
|
|
public Long getGoodsId() {
|
|
return goodsId;
|
|
}
|
|
|
|
public void setGoodsId(Long goodsId) {
|
|
this.goodsId = goodsId;
|
|
}
|
|
|
|
public String getGoodsName() {
|
|
return goodsName;
|
|
}
|
|
|
|
public void setGoodsName(String goodsName) {
|
|
this.goodsName = goodsName;
|
|
}
|
|
|
|
public String getGoodsImg() {
|
|
return goodsImg;
|
|
}
|
|
|
|
public void setGoodsImg(String goodsImg) {
|
|
this.goodsImg = goodsImg;
|
|
}
|
|
|
|
public String getGoodsSpecName() {
|
|
return goodsSpecName;
|
|
}
|
|
|
|
public void setGoodsSpecName(String goodsSpecName) {
|
|
this.goodsSpecName = goodsSpecName;
|
|
}
|
|
|
|
public BigDecimal getGoodsPrice() {
|
|
return goodsPrice;
|
|
}
|
|
|
|
public void setGoodsPrice(BigDecimal goodsPrice) {
|
|
this.goodsPrice = goodsPrice;
|
|
}
|
|
|
|
public Integer getSaleCount() {
|
|
return saleCount;
|
|
}
|
|
|
|
public void setSaleCount(Integer saleCount) {
|
|
this.saleCount = saleCount;
|
|
}
|
|
|
|
public BigDecimal getTotalPrice() {
|
|
return totalPrice;
|
|
}
|
|
|
|
public void setTotalPrice(BigDecimal totalPrice) {
|
|
this.totalPrice = totalPrice;
|
|
}
|
|
|
|
public Boolean getGiveawayType() {
|
|
return giveawayType;
|
|
}
|
|
|
|
public void setGiveawayType(Boolean giveawayType) {
|
|
this.giveawayType = giveawayType;
|
|
}
|
|
|
|
public Integer getChildOrdeStatus() {
|
|
return childOrdeStatus;
|
|
}
|
|
|
|
public void setChildOrdeStatus(Integer childOrdeStatus) {
|
|
this.childOrdeStatus = childOrdeStatus;
|
|
}
|
|
|
|
public Integer getPraiseStatus() {
|
|
return praiseStatus;
|
|
}
|
|
|
|
public void setPraiseStatus(Integer praiseStatus) {
|
|
this.praiseStatus = praiseStatus;
|
|
}
|
|
|
|
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;
|
|
}
|
|
HighChildOrder other = (HighChildOrder) that;
|
|
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
|
|
&& (this.getOrderId() == null ? other.getOrderId() == null : this.getOrderId().equals(other.getOrderId()))
|
|
&& (this.getGoodsType() == null ? other.getGoodsType() == null : this.getGoodsType().equals(other.getGoodsType()))
|
|
&& (this.getGoodsId() == null ? other.getGoodsId() == null : this.getGoodsId().equals(other.getGoodsId()))
|
|
&& (this.getGoodsName() == null ? other.getGoodsName() == null : this.getGoodsName().equals(other.getGoodsName()))
|
|
&& (this.getGoodsImg() == null ? other.getGoodsImg() == null : this.getGoodsImg().equals(other.getGoodsImg()))
|
|
&& (this.getGoodsSpecName() == null ? other.getGoodsSpecName() == null : this.getGoodsSpecName().equals(other.getGoodsSpecName()))
|
|
&& (this.getGoodsPrice() == null ? other.getGoodsPrice() == null : this.getGoodsPrice().equals(other.getGoodsPrice()))
|
|
&& (this.getSaleCount() == null ? other.getSaleCount() == null : this.getSaleCount().equals(other.getSaleCount()))
|
|
&& (this.getTotalPrice() == null ? other.getTotalPrice() == null : this.getTotalPrice().equals(other.getTotalPrice()))
|
|
&& (this.getGiveawayType() == null ? other.getGiveawayType() == null : this.getGiveawayType().equals(other.getGiveawayType()))
|
|
&& (this.getChildOrdeStatus() == null ? other.getChildOrdeStatus() == null : this.getChildOrdeStatus().equals(other.getChildOrdeStatus()))
|
|
&& (this.getPraiseStatus() == null ? other.getPraiseStatus() == null : this.getPraiseStatus().equals(other.getPraiseStatus()))
|
|
&& (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 + ((getOrderId() == null) ? 0 : getOrderId().hashCode());
|
|
result = prime * result + ((getGoodsType() == null) ? 0 : getGoodsType().hashCode());
|
|
result = prime * result + ((getGoodsId() == null) ? 0 : getGoodsId().hashCode());
|
|
result = prime * result + ((getGoodsName() == null) ? 0 : getGoodsName().hashCode());
|
|
result = prime * result + ((getGoodsImg() == null) ? 0 : getGoodsImg().hashCode());
|
|
result = prime * result + ((getGoodsSpecName() == null) ? 0 : getGoodsSpecName().hashCode());
|
|
result = prime * result + ((getGoodsPrice() == null) ? 0 : getGoodsPrice().hashCode());
|
|
result = prime * result + ((getSaleCount() == null) ? 0 : getSaleCount().hashCode());
|
|
result = prime * result + ((getTotalPrice() == null) ? 0 : getTotalPrice().hashCode());
|
|
result = prime * result + ((getGiveawayType() == null) ? 0 : getGiveawayType().hashCode());
|
|
result = prime * result + ((getChildOrdeStatus() == null) ? 0 : getChildOrdeStatus().hashCode());
|
|
result = prime * result + ((getPraiseStatus() == null) ? 0 : getPraiseStatus().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(", orderId=").append(orderId);
|
|
sb.append(", goodsType=").append(goodsType);
|
|
sb.append(", goodsId=").append(goodsId);
|
|
sb.append(", goodsName=").append(goodsName);
|
|
sb.append(", goodsImg=").append(goodsImg);
|
|
sb.append(", goodsSpecName=").append(goodsSpecName);
|
|
sb.append(", goodsPrice=").append(goodsPrice);
|
|
sb.append(", saleCount=").append(saleCount);
|
|
sb.append(", totalPrice=").append(totalPrice);
|
|
sb.append(", giveawayType=").append(giveawayType);
|
|
sb.append(", childOrdeStatus=").append(childOrdeStatus);
|
|
sb.append(", praiseStatus=").append(praiseStatus);
|
|
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();
|
|
}
|
|
} |