File was renamed from fanli/src/main/java/com/yeshi/fanli/entity/taobao/TaoBaoHongBaoInfo.java |
| | |
| | | package com.yeshi.fanli.entity.taobao;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | //密朵红包信息
|
| | | public class TaoBaoHongBaoInfo {
|
| | | @Expose
|
| | | private BigDecimal hongbao;
|
| | |
|
| | | @Expose
|
| | | private String rate;
|
| | | |
| | | /**
|
| | | * 0:红包 1:比率
|
| | | */
|
| | | @Expose
|
| | | private int type;
|
| | | |
| | | public BigDecimal getHongbao() {
|
| | | return hongbao;
|
| | | }
|
| | |
|
| | | public void setHongbao(BigDecimal hongbao) {
|
| | | this.hongbao = hongbao;
|
| | | }
|
| | |
|
| | | public String getRate() {
|
| | | return rate;
|
| | | }
|
| | |
|
| | | public void setRate(String rate) {
|
| | | this.rate = rate;
|
| | | }
|
| | |
|
| | | public int getType() {
|
| | | return type;
|
| | | }
|
| | |
|
| | | public void setType(int type) {
|
| | | this.type = type;
|
| | | }
|
| | | |
| | | }
|
| | | package com.yeshi.goods.facade.entity.taobao; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | import com.google.gson.annotations.Expose; |
| | | |
| | | //密朵红包信息 |
| | | public class TaoBaoHongBaoInfo { |
| | | @Expose |
| | | private BigDecimal hongbao; |
| | | |
| | | @Expose |
| | | private String rate; |
| | | |
| | | /** |
| | | * 0:红包 1:比率 |
| | | */ |
| | | @Expose |
| | | private int type; |
| | | |
| | | public BigDecimal getHongbao() { |
| | | return hongbao; |
| | | } |
| | | |
| | | public void setHongbao(BigDecimal hongbao) { |
| | | this.hongbao = hongbao; |
| | | } |
| | | |
| | | public String getRate() { |
| | | return rate; |
| | | } |
| | | |
| | | public void setRate(String rate) { |
| | | this.rate = rate; |
| | | } |
| | | |
| | | public int getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(int type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | } |