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();
|
}
|
|
}
|