fix
Helius
2021-06-29 56004a2e34c8249034e5f0d36fdb59e4e19eafd6
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
26
package com.xzx.gc.entity;
 
import com.xzx.gc.common.entity.BaseEntity;
import lombok.Data;
 
import javax.persistence.Table;
import java.math.BigDecimal;
 
@Data
@Table(name = "xzx_score_goods_sku")
public class ScoreGoodsSku extends BaseEntity {
 
    private String name;
 
    private BigDecimal originalPrice;
 
    private BigDecimal presentPrice;
 
    private Integer stock;
 
    private Integer quantity;
 
    private Long styleId;
 
    private Long goodsId;
}