liyong
2026-05-09 4402a6e3befe0c33e8f3b58641984fce3fdb0bbc
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
package com.ruoyi.stock.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.time.LocalDate;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 盘点计划表
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2026-05-09 10:00:43
 */
@Getter
@Setter
@ToString
@TableName("stock_inventory_check_plan")
@ApiModel(value = "StockInventoryCheckPlan对象", description = "盘点计划表")
public class StockInventoryCheckPlan implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键ID
     */
    @Schema(description = "主键ID")
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 计划编号
     */
    @Schema(description = "计划编号")
    private String planNo;
 
 
    /**
     * 负责人ID
     */
    @Schema(description = "盘点人id")
    private Long checkerId;
 
    /**
     * 负责人姓名
     */
    @Schema(description = "盘点人名字")
    private String checkerName;
 
    /**
     * 计划日期
     */
    @Schema(description = "计划日期")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate planDate;
 
 
    /**
     * 状态:0-待执行,1-执行中,2-已完成,3-已取消
     */
    @Schema(description = "状态:0-待执行,1-执行中,2-已完成,3-已取消")
    private Integer status;
 
    /**
     * 创建时间
     */
    @Schema(description = "创建时间")
    @TableField(fill = FieldFill.INSERT)
    private LocalDate createTime;
 
    /**
     * 创建人
     */
    @Schema(description = "创建人")
    @TableField(fill = FieldFill.INSERT)
    private Long createUser;
 
    /**
     * 更新时间
     */
    @Schema(description = "更新时间")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
 
    /**
     * 更新人
     */
    @Schema(description = "更新人")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Long updateUser;
 
    /**
     * 备注
     */
    @Schema(description = "备注")
    private String remark;
 
    /**
     * 删除标志(0代表存在 1代表删除)
     */
    @Schema(description = "删除标志(0代表存在 1代表删除)")
    private String delFlag;
 
    private Long deptId;
}