| | |
| | | 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
|
| | |
| | | @Column(name = "cog_update_time")
|
| | | private Date updateTime;
|
| | |
|
| | | // 分类
|
| | | private String category1;
|
| | | private String category2;
|
| | | private String category3;
|
| | | |
| | | public CommonOrderGoods() {
|
| | |
|
| | | }
|
| | |
| | | this.updateTime = updateTime;
|
| | | }
|
| | |
|
| | | public BigDecimal getActualPrice() {
|
| | | return actualPrice;
|
| | | }
|
| | |
|
| | | public void setActualPrice(BigDecimal actualPrice) {
|
| | | this.actualPrice = actualPrice;
|
| | | }
|
| | |
|
| | | public String getCategory1() {
|
| | | return category1;
|
| | | }
|
| | |
|
| | | public void setCategory1(String category1) {
|
| | | this.category1 = category1;
|
| | | }
|
| | |
|
| | | public String getCategory2() {
|
| | | return category2;
|
| | | }
|
| | |
|
| | | public void setCategory2(String category2) {
|
| | | this.category2 = category2;
|
| | | }
|
| | |
|
| | | public String getCategory3() {
|
| | | return category3;
|
| | | }
|
| | |
|
| | | public void setCategory3(String category3) {
|
| | | this.category3 = category3;
|
| | | }
|
| | | |
| | | }
|