huminmin
7 天以前 0fdd0bf60b7d98d21c9b5ff95bb55f0fa6495007
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
package cn.iocoder.yudao.module.mes.enums;
 
/**
 * MES 单据状态常量
 *
 * 集中管理各模块单据状态的编号,作为状态值的中央注册中心。
 * 各枚举类引用此处常量,避免硬编码数字。
 *
 * @author 超级管理员
 */
public final class MesOrderStatusConstants {
 
    /**
     * 草稿
     */
    public static final int PREPARE = 0;
 
    /**
     * 已确认
     */
    public static final int CONFIRMED = 1;
    /**
     * 审批中
     */
    public static final int APPROVING = 2;
    /**
     * 已审批
     */
    public static final int APPROVED = 3;
 
    /**
     * 已完成
     */
    public static final int FINISHED = 4;
    /**
     * 已取消
     */
    public static final int CANCELLED = 5;
 
    /**
     * 已评审(NCR 专用)
     */
    public static final int REVIEWED = 6;
    /**
     * 已处置(NCR 专用)
     */
    public static final int DISPOSED = 7;
    /**
     * 已关闭(NCR 专用)
     */
    public static final int CLOSED = 8;
 
}