liyong
2026-05-14 393859848d92c4773c55416ee61f45eea6573941
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
package com.ruoyi.stock.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 库存盘点子表
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2026-05-09 09:57:44
 */
@Getter
@Setter
@ToString
@TableName("stock_inventory_check_item")
@ApiModel(value = "StockInventoryCheckItem对象", description = "库存盘点子表")
public class StockInventoryCheckItem implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键ID
     */
    @Schema(description ="主键ID")
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 主表ID
     */
    @Schema(description ="主表ID")
    private Long mainId;
 
    /**
     * 商品ID
     */
    @Schema(description ="商品ID")
    private Long productModelId;
 
    /**
     * 商品编码
     */
    @Schema(description ="商品编码")
    private String productCode;
 
    /**
     * 商品名称
     */
    @Schema(description ="商品名称")
    private String productName;
 
    /**
     * 规格型号
     */
    @Schema(description ="规格型号")
    private String model;
 
    /**
     * 单位
     */
    @Schema(description ="单位")
    private String unit;
 
    /**
     * 批号
     */
    @Schema(description ="批号")
    private String batchNo;
 
    /**
     * 仓库ID
     */
    @Schema(description ="仓库ID")
    private Long warehouseInfoId;
 
    /**
     * 系统库存数量
     */
    @Schema(description ="系统库存数量")
    private BigDecimal systemQuantity;
 
    /**
     * 实际盘点数量
     */
    @Schema(description ="实际盘点数量")
    private BigDecimal actualQuantity;
 
    /**
     * 差异数量(实际-系统)
     */
    @Schema(description ="差异数量(实际-系统)")
    private BigDecimal differenceQuantity;
 
 
 
 
 
    /**
     * 备注
     */
    @Schema(description ="备注")
    private String remark;
 
    /**
     * 创建时间
     */
    @Schema(description ="创建时间")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
 
    /**
     * 更新时间
     */
    @Schema(description ="更新时间")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
 
    @TableField(exist = false)
    private String warehouseName;
    private Long deptId;
}