xuhy
2024-12-16 9de59eeae9728b9085c6e964a87ba54d2c85c2e7
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package com.jilongda.applet.model;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
 
import com.jilongda.common.pojo.BaseModel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * <p>
 * 材质表
 * </p>
 *
 * @author 无关风月
 * @since 2024-12-09
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("t_inventory_frame_detail")
@ApiModel(value="TInventoryFrameDetail对象", description="材质表")
public class TInventoryFrameDetail extends BaseModel {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "主键id")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = "盘点表id")
    @TableField("inventoryId")
    private Integer inventoryId;
 
    @ApiModelProperty(value = "品牌")
    @TableField("brand")
    private Integer brand;
 
    @ApiModelProperty(value = "供应商")
    @TableField("supplier")
    private Integer supplier;
 
    @ApiModelProperty(value = "材质")
    @TableField("material")
    private Integer material;
 
    @ApiModelProperty(value = "库存总数量")
    @TableField("total")
    private Integer total;
 
    @ApiModelProperty(value = "盘点类型 1型号2品牌3材质")
    @TableField("category")
    private Integer category;
 
    @ApiModelProperty(value = "色号")
    @TableField("color")
    private String color;
 
    @ApiModelProperty(value = "镜架型号")
    @TableField("model")
    private Integer model;
 
    @ApiModelProperty(value = "盘点数量")
    @TableField("count")
    private Integer count;
 
    @ApiModelProperty(value = "差值")
    @TableField("diff")
    private Integer diff;
 
}