4 天以前 84ac2b6b12bc3e5de072661fb25e87877c01d0d7
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
package cn.iocoder.yudao.module.mes.dal.dataobject.wm.stocktaking.plan;
 
import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum;
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
import cn.iocoder.yudao.module.mes.enums.wm.MesWmStockTakingTypeEnum;
import com.baomidou.mybatisplus.annotation.KeySequence;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.*;
 
import java.time.LocalDateTime;
import cn.iocoder.yudao.module.mes.enums.DictTypeConstants;
 
/**
 * MES 盘点方案 DO
 *
 * @author 芋道源码
 */
@TableName("mes_wm_stock_taking_plan")
@KeySequence("mes_wm_stock_taking_plan_seq")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class MesWmStockTakingPlanDO extends BaseDO {
 
    /**
     * 编号
     */
    @TableId
    private Long id;
 
    /**
     * 方案编码
     */
    private String code;
 
    /**
     * 方案名称
     */
    private String name;
 
    /**
     * 盘点类型
     *
     * 字典 {@link DictTypeConstants#MES_WM_STOCK_TAKING_TYPE}
     * 枚举 {@link MesWmStockTakingTypeEnum}
     */
    private Integer type;
    /**
     * 计划开始时间
     */
    private LocalDateTime startTime;
    /**
     * 计划结束时间
     */
    private LocalDateTime endTime;
 
    /**
     * 是否盲盘
     */
    private Boolean blindFlag;
    /**
     * 是否冻结库存
     */
    private Boolean frozen;
 
    /**
     * 状态
     *
     * 枚举 {@link CommonStatusEnum}
     */
    private Integer status;
 
    /**
     * 备注
     */
    private String remark;
 
}