2 天以前 111270df037596a04df97f787ca8b9199dd99866
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
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;
 
}