Blame view

fw-morax-common/src/main/java/cn/fw/morax/common/config/FlowVal.java 550 Bytes
b0f4e55e   姜超   [jiangchao] 绩效组保存审批
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  package cn.fw.morax.common.config;
  
  import lombok.Data;
  import org.springframework.boot.context.properties.ConfigurationProperties;
  
  @Data
  @ConfigurationProperties(prefix = "flow")
  public class FlowVal {
  
      /**
       * 绩效组修改审批
       */
      private String kpiGroupConfig;
  
4b07306b   姜超   feature(*): 星级特殊调整申请
15
      /**
5f82695a   姜超   feature(*): 审批配置文件提交
16
17
18
19
20
       * 薪酬组修改审批
       */
      private String salaryGroupConfig;
  
      /**
4b07306b   姜超   feature(*): 星级特殊调整申请
21
22
23
24
       * 绩效星级特殊调整
       */
      private String kpiStarAdjustment;
  
ae1929f4   姜超   feature(compensat...
25
26
27
28
29
      /**
       * 绩效组修改审批
       */
      private String incomeCompensationConfig;
  
b0f4e55e   姜超   [jiangchao] 绩效组保存审批
30
  }