Product.java 1.56 KB
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;
}