Helius
2021-06-21 35625bb47c4f9238a8d33d843466d8cb905d7af9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.xzx.gc.entity;
 
import lombok.Data;
 
import javax.persistence.Table;
import java.math.BigDecimal;
 
@Data
@Table(name = "xzx_score_goods_sku")
public class ScoreGoodsSku {
 
    private String name;
 
    private BigDecimal originalPrice;
 
    private BigDecimal presentPrice;
 
    private Integer stock;
 
    private Integer quantity;
 
    private Long styleId;
 
    private Long goodsId;
}