Blame view

fw-morax-service/src/main/java/cn/fw/morax/service/data/salary/impl/SalaryGroupUserServiceImpl.java 1.3 KB
19bc47fe   姜超   feature(*): 薪酬相关s...
1
2
3
4
5
6
7
8
9
  package cn.fw.morax.service.data.salary.impl;
  
  import cn.fw.morax.dao.salary.SalaryGroupUserDao;
  import cn.fw.morax.domain.db.salary.SalaryGroupUser;
  import cn.fw.morax.service.data.salary.SalaryGroupUserService;
  import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  import lombok.extern.slf4j.Slf4j;
  import org.springframework.stereotype.Service;
  
459e4fde   姜超   fix(kpipool、salar...
10
  import java.time.YearMonth;
f9a3dfe2   张志伟   feature(*): 额外薪酬项...
11
12
  import java.util.Date;
  
19bc47fe   姜超   feature(*): 薪酬相关s...
13
14
15
16
17
18
19
20
21
  /**
   * @author : kurisu
   * @className : SalaryGroupUserServiceImpl
   * @description : 薪酬组人员
   * @date: 2022-04-06 17:05
   */
  @Service
  @Slf4j
  public class SalaryGroupUserServiceImpl extends ServiceImpl<SalaryGroupUserDao, SalaryGroupUser> implements SalaryGroupUserService {
f9a3dfe2   张志伟   feature(*): 额外薪酬项...
22
23
24
25
      @Override
      public SalaryGroupUser queryUserByPostShopAndUserId(final Long userId, final Long postId, final Long shopId, final Date dataDate) {
          return this.getBaseMapper().queryUserByPostShopAndUserId(userId, postId, shopId, dataDate);
      }
459e4fde   姜超   fix(kpipool、salar...
26
27
28
29
30
  
      @Override
      public SalaryGroupUser getMonthLastData(String sgc, Long userId, YearMonth monthly) {
          return this.getBaseMapper().getMonthLastData(sgc, userId, monthly);
      }
dc3ff325   姜超   feature(*): 薪酬组开始...
31
32
33
34
      @Override
      public SalaryGroupUser getMonthFirstData(String sgc, Long userId, YearMonth monthly) {
          return this.getBaseMapper().getMonthFirstData(sgc, userId, monthly);
      }
19bc47fe   姜超   feature(*): 薪酬相关s...
35
  }