Blame view

fw-morax-common/src/main/java/cn/fw/morax/common/constant/Constant.java 2.01 KB
1344f821   姜超   feature(*): 绩效组配置保存
1
2
  package cn.fw.morax.common.constant;
  
9f47fb88   姜超   feature(*): 薪酬组人员日期
3
4
  import org.apache.commons.collections4.map.LinkedMap;
  
a4b02509   姜超   feature(*): 绩效组阶梯...
5
  import java.math.BigDecimal;
9f47fb88   姜超   feature(*): 薪酬组人员日期
6
  import java.util.LinkedList;
a4b02509   姜超   feature(*): 绩效组阶梯...
7
  
1344f821   姜超   feature(*): 绩效组配置保存
8
9
10
  public class Constant {
  
      /**
4b07306b   姜超   feature(*): 星级特殊调整申请
11
       * 保存失败提示
1344f821   姜超   feature(*): 绩效组配置保存
12
       */
4b07306b   姜超   feature(*): 星级特殊调整申请
13
      public static final String SAVE_FAIL_RETRY_PROMPT = "保存失败,请联系后台人员";
1344f821   姜超   feature(*): 绩效组配置保存
14
  
45c0814e   姜超   feature(*): 薪酬查询调整
15
16
17
18
19
      /**
       * 工资发放角色编码
       */
      public static final String ROLE_CODE_WAGE_PAYMENT = "FA-GZZF";
  
a4b02509   姜超   feature(*): 绩效组阶梯...
20
21
22
23
      /**
       * 一百
       */
      public static final BigDecimal ONE_HUNDRED  = new BigDecimal("100");
45c0814e   姜超   feature(*): 薪酬查询调整
24
  
c88f166e   姜超   fix(*): 计算薪资修改
25
26
27
28
29
      /**
       * 
       */
      public static final BigDecimal ZERO  = new BigDecimal("0");
  
eaa1d3af   姜超   feature(*): 薪酬系统配置查询
30
      /**
b365d22a   姜超   feature(*): 申述日期修...
31
32
33
34
35
       * 薪酬申述时间
       */
      public final static Integer SALARY_APPEAL_DAYS = 3;
  
      /**
eaa1d3af   姜超   feature(*): 薪酬系统配置查询
36
37
38
39
40
41
42
43
       * 薪酬默认上述时间
       */
      public final static String SALARY_DEFAULT_DATES_OF_APPEAL = "3,5";
  
      /**
       * 薪酬默认发放时间
       */
      public final static Integer SALARY_DEFAULT_PAYOFF_DATE = 15;
b365d22a   姜超   feature(*): 申述日期修...
44
45
46
47
      /**
       * 薪酬申述最大天数
       */
      public final static Integer SALARY_APPEAL_MAX_DAYS = 15;
eaa1d3af   姜超   feature(*): 薪酬系统配置查询
48
  
f487dd65   姜超   feature(*): 人员质量评测接口
49
50
51
52
      /**
       * 分隔符
       */
      public final static String SEPARATOR = "_";
9f47fb88   姜超   feature(*): 薪酬组人员日期
53
54
  
      /**
2ac0c565   姜超   feature(*): 修改个人考评
55
56
       * 时间分隔符
       */
f945186c   姜超   feature(*): 修改个人考评
57
      public final static String TIME_SEPARATOR = "—";
2ac0c565   姜超   feature(*): 修改个人考评
58
59
  
      /**
9f47fb88   姜超   feature(*): 薪酬组人员日期
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
       * 薪酬报表车系名称
       */
      public final static String REPORT_CAR_SERIES_NAME = "carSeriesName";
  
      /**
       * 薪酬报表车系销售数量
       */
      public final static String REPORT_CAR_SERIES_SALE_NUM = "carSeriesSaleNum";
  
      /**
       * 薪酬报表车系薪酬
       */
      public final static String REPORT_CAR_SERIES_SALARY = "carSeriesSalary";
  
      /**
       * 薪酬报表车系表头
       */
      public final static LinkedMap<String, String> REPORT_CAR_SERIES_HEADER = new LinkedMap<String, String>(){{
          put(REPORT_CAR_SERIES_NAME, "车系");
          put(REPORT_CAR_SERIES_SALE_NUM, "零售数");
          put(REPORT_CAR_SERIES_SALARY, "提成金额");
      }};
79b684db   姜超   feature(*): 薪酬上报数据
82
83
84
85
86
  
      /**
       * 上报最大数据量
       */
      public final static Integer REPORT_MAX_SIZE = 500;
1344f821   姜超   feature(*): 绩效组配置保存
87
  }