Blame view

fw-morax-common/src/main/java/cn/fw/morax/common/pojo/event/KpiStarAdjustmentEvent.java 400 Bytes
7b6ab90b   姜超   feature(*): 绩效保存修...
1
2
3
4
5
6
7
8
  package cn.fw.morax.common.pojo.event;
  
  import lombok.AllArgsConstructor;
  import lombok.Builder;
  import lombok.Data;
  import lombok.NoArgsConstructor;
  
  import java.time.YearMonth;
7b6ab90b   姜超   feature(*): 绩效保存修...
9
10
11
12
13
14
  
  @Data
  @Builder
  @AllArgsConstructor
  @NoArgsConstructor
  public class KpiStarAdjustmentEvent {
7b6ab90b   姜超   feature(*): 绩效保存修...
15
16
17
18
      /**
       * 用户id
       */
      private Long userId;
7b6ab90b   姜超   feature(*): 绩效保存修...
19
20
21
22
      /**
       * 调整月份
       */
      private YearMonth yearMonth;
7b6ab90b   姜超   feature(*): 绩效保存修...
23
  }