| | |
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | // 淘宝
|
| | | public final static int TYPE_TAOBAO = 1;
|
| | | // 京东
|
| | | public final static int TYPE_JINGDONG = 2;
|
| | | public final static String TYPE_TAOBAO = "TB";
|
| | | // 天猫
|
| | | public final static String TYPE_TMALL = "TM";
|
| | |
|
| | | @Column(name = "cog_id")
|
| | | private Long id;
|
| | |
| | | @Expose
|
| | | @Column(name = "cog_price")
|
| | | private BigDecimal price;
|
| | |
|
| | | //实际价格
|
| | | @Column(name = "cog_actual_price")
|
| | | private BigDecimal actualPrice;
|
| | |
|
| | | // 店铺id
|
| | | @Expose
|
| | |
| | | this.updateTime = updateTime;
|
| | | }
|
| | |
|
| | | public BigDecimal getActualPrice() {
|
| | | return actualPrice;
|
| | | }
|
| | |
|
| | | public void setActualPrice(BigDecimal actualPrice) {
|
| | | this.actualPrice = actualPrice;
|
| | | }
|
| | |
|
| | | }
|