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
| package com.changhong.epc.count.service.system.model;
|
| /***
| * 公式的参数类型
| * @ClassName: ParamType
| * @author [九鼎联合科技]
| * @date 2017年5月30日 下午1:42:04
| */
| public enum SystemFunContextType {
| /**
| * 所有行程
| */
| ALL_JOURNEY
| /**
| * 当前的行程
| */
| , JOURNEY
|
| /**
| * 表单整体信息
| */
| , FORM_INFO
|
| /**
| * 获取报销次数
| */
| , COUNT_EXPENSE
| }
|
|