Helius
2021-06-24 24d31802ba0ba422eb403212c5b1fcd47226db7a
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.xzx.gc.entity;
 
 
import com.xzx.gc.common.entity.BaseEntity;
import lombok.Data;
 
import javax.persistence.Column;
import javax.persistence.Table;
import java.util.Date;
 
@Data
@Table(name = "xzx_score_goods")
public class ScoreGoods extends BaseEntity {
 
    private String goodsNo;
 
    private String name;
 
    private String unit;
 
    private String brand;
 
    private String shipping;
 
    private String thumb;
 
    private String details;
 
    /**
     * 是否抢购 1-是 2-否
     */
    private Integer isQg;
    public static final Integer ISQG_YES = 1;
    public static final Integer ISQG_NO = 2;
 
    private Date qgStartTime;
 
    private Date qgEndTime;
 
    private Integer isSale;
    public static final Integer ISSALE_YES = 1;
    public static final Integer ISSALE_NO = 2;
 
    private Integer carbonEmissions;
}