hjl
2024-06-18 aaa3384609da2dfb7d6788a2a2b3d92a2bff0813
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
package com.ruoyi.common.core.constant;
 
/**
 * 订单相关状态常量/接口常量
 * @author HJL
 * @version 1.0
 * @since 2024-05-30 15:54
 */
public class OrderConstants {
 
    /**
     * 待派单
     */
    public static final Integer TO_BE_DISPATCHED = 0;
 
    /**
     * 待接单
     */
    public static final Integer PENDING_ORDERS = 1;
 
    /**
     * 待上门
     */
    public static final Integer STAY_AT_DOORSTEP = 2;
 
    /**
     * 待完工
     */
    public static final Integer TO_BE_COMPLETED = 3;
 
    /**
     * 已完工
     */
    public static final Integer COMPLETED = 4;
 
    /**
     * 已取消
     */
    public static final Integer CANCEL = 5;
 
    /**
     * 年
     */
    public static final String YEAR = "year";
 
    /**
     * 本月
     */
    public static final String MONTH = "month";
 
    /**
     * 周
     */
    public static final String WEEK = "week";
 
    /**
     * 当天
     */
    public static final String TODAY = "today";
 
    /**
     * 季度
     */
    public static final String QUARTER = "quarter";
 
 
}