Product.java
1.56 KB
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
package vion.model;
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.github.linpeilie.annotations.AutoMapper;
import io.github.linpeilie.annotations.AutoMappers;
import lombok.Data;
import vion.dto.ProductDTO;
import vion.vo.ProductVO;
import java.util.Date;
/**
 * 产品信息
 */
@Data
@TableName(value="tbl_product_info")
@AutoMappers({
        @AutoMapper(target = ProductVO.class),
        @AutoMapper(target = ProductDTO.class),
})
public class Product {
    /** 自增列 */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /** 物料编号 */
    private String materialNo;
    /** 门店id */
    private Long storeId;
    /** 产品名称 */
    private String name;
    /** 产品型号 */
    private Integer functionary;
    /** 品牌 */
    private Integer brand;
    /** 订货数量 */
    private Integer productCount;
    /** 订货单价 */
    private Float productPrice;
    //定后价小计(单价乘以数** ) */
    private Float productSubtotal;
    /** 订货总价 */
    private Float productTotalPrice;
    /** 创建时间 */
    @TableField(value = "create_time", fill = FieldFill.INSERT)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
    /** 修改时间 */
    @TableField(value = "modify_time", fill = FieldFill.INSERT_UPDATE)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date modifyTime;
    /** 备注 */
    private String remark;
    /** 集团id */
    private Long accountId;
}