YYC
2023-08-10 b419882d270acd9b08426de497ade37a16e10970
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
package com.ld.igds.oa;
 
import com.ld.igds.util.ContextUtil;
 
/**
 * OA模块的常量定义
 * 
 * @author: andy.jia
 * @description:
 * @version:
 * @data:2020年5月28日
 *
 */
public class OAUtil {
 
    /**
     * 审核状态-待审核
     */
    public static final String AUDIT_NONE = "NONE";
 
    /**
     * 审核状态-通过
     */
    public static final String AUDIT_PASS = "PASS";
    /**
     * 审核状态-拒绝
     */
    public static final String AUDIT_UNPASS = "UNPASS";
 
    /**
     * GPS运行状态
     */
    public static String RUN_STATUS_RUN = "run";
    public static String RUN_STATUS_STOP = "stop";
    public static String RUN_STATUS_NONE = "none";// 未知状态
 
    /**
     * 创建报销ID
     * @return
     */
    public static String createExpClaimId() {
        return "BX" + ContextUtil.getTimeId();
    }
 
}