Blame view

fw-morax-dao/src/main/java/cn/fw/morax/dao/kpi/KpiGroupIndicatorPreconditionDao.java 960 Bytes
ead23336   姜超   feature(*): 新增实体类...
1
2
3
  package cn.fw.morax.dao.kpi;
  
  
caf55039   姜超   feature(*): 实体类修改
4
  import cn.fw.morax.domain.db.kpi.KpiGroupIndicatorPrecondition;
9fe049d0   姜超   feature(*): 修改薪酬计...
5
  import cn.fw.morax.domain.vo.kpi.KpiGroupIndicatorPreconditionVO;
ead23336   姜超   feature(*): 新增实体类...
6
  import com.baomidou.mybatisplus.core.mapper.BaseMapper;
f77829b1   姜超   feature(*): 绩效薪酬详情
7
  import org.apache.ibatis.annotations.Param;
4cd995a9   张志伟   :zap:
8
  import org.springframework.stereotype.Repository;
ead23336   姜超   feature(*): 新增实体类...
9
  
9fe049d0   姜超   feature(*): 修改薪酬计...
10
11
12
  import java.time.LocalDate;
  import java.util.List;
  
ead23336   姜超   feature(*): 新增实体类...
13
14
15
16
17
18
19
20
  /**
   * <p>
   * 绩效组指标条件 Mapper 接口
   * </p>
   *
   * @author jiangchao
   * @since 2022-12-05
   */
4cd995a9   张志伟   :zap:
21
  @Repository
caf55039   姜超   feature(*): 实体类修改
22
  public interface KpiGroupIndicatorPreconditionDao extends BaseMapper<KpiGroupIndicatorPrecondition> {
ead23336   姜超   feature(*): 新增实体类...
23
  
9fe049d0   姜超   feature(*): 修改薪酬计...
24
  
2f281884   姜超   feature(bug): 条件...
25
26
      List<KpiGroupIndicatorPreconditionVO> getVos(@Param("kpiGroupId") Long kpiGroupId);
  
f77829b1   姜超   feature(*): 绩效薪酬详情
27
28
      List<KpiGroupIndicatorPreconditionVO> getHitVos(@Param("kpiGroupIndicatorId") Long kpiGroupIndicatorId,
                                                      @Param("userId") Long userId,
3d4edc47   姜超   feature(*): 薪酬项目下钻
29
                                                      @Param("dataDate") LocalDate dataDate);
ead23336   姜超   feature(*): 新增实体类...
30
  }