xiaoyong931011
2021-07-21 f79dd632f83167b3cd5ad01e2f7c494b92c834d3
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.xzx.gc.entity;
 
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.xzx.gc.common.entity.BaseEntity;
import io.swagger.annotations.ApiModelProperty;
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;
 
//    private String priceRange;
 
    private String originalPrice;
 
    private String presentPrice;
 
    private String categoryId;
 
    private String categoryName;
 
    /**
     * 是否抢购 1-是 2-否
     */
    private Integer isQg;
    public static final Integer ISQG_YES = 1;
    public static final Integer ISQG_NO = 2;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date qgStartTime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date qgEndTime;
 
    private Integer isSale;
    public static final Integer ISSALE_YES = 1;
    public static final Integer ISSALE_NO = 2;
 
    private Integer carbonEmissions;
}