| | |
| | | */ |
| | | public class ShopSku extends EntityDTO{ |
| | | @Extend |
| | | private static final long serialVersionUID = 1L; |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | |
| | | /** |
| | |
| | | * 价格 |
| | | */ |
| | | private BigDecimal price; |
| | | /** |
| | | *推广提成 |
| | | */ |
| | | private BigDecimal sealesPrice; |
| | | /** |
| | | *邀请提成 |
| | | */ |
| | | private BigDecimal invitationPrice; |
| | | |
| | | /** |
| | | * 积分 |
| | | * 消费可得积分 |
| | | */ |
| | | private Integer score; |
| | | |
| | | /** |
| | | * 积分兑换价格 |
| | | */ |
| | | private Integer scorePrice; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 排序 |
| | |
| | | |
| | | @Extend |
| | | private String goodsName; |
| | | |
| | | public BigDecimal getSealesPrice() { |
| | | return sealesPrice; |
| | | } |
| | | |
| | | public void setSealesPrice(BigDecimal sealesPrice) { |
| | | this.sealesPrice = sealesPrice; |
| | | } |
| | | |
| | | public BigDecimal getInvitationPrice() { |
| | | return invitationPrice; |
| | | } |
| | | |
| | | public void setInvitationPrice(BigDecimal invitationPrice) { |
| | | this.invitationPrice = invitationPrice; |
| | | } |
| | | |
| | | public Long getCompanyId() { |
| | | return companyId; |
| | |
| | | this.goodsName = goodsName; |
| | | } |
| | | |
| | | public Integer getScorePrice() { |
| | | return scorePrice; |
| | | } |
| | | |
| | | public void setScorePrice(Integer scorePrice) { |
| | | this.scorePrice = scorePrice; |
| | | } |
| | | |
| | | @Override |
| | | public boolean equals(Object obj) { |
| | | //这里以name为判定标准。 |