mitao
2024-04-19 b21c37b7899b17dede7773db3c799aab1063ae1c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.finance.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.finance.common.enums.DataScreenConfigEnum;
import com.finance.system.domain.TbDataScreenConfig;
import com.finance.system.dto.update.DataIndicatorsUpdDTO;
import com.finance.system.dto.update.FormalIndicatorsUpdDTO;
import com.finance.system.dto.update.RiskLevelUpdDTO;
import com.finance.system.vo.DataScreenConfigVO;
import java.util.List;
import javax.validation.constraints.NotNull;
 
/**
 * <p>
 * 大屏数据配置表 服务类
 * </p>
 *
 * @author mitao
 * @since 2024-03-13
 */
public interface TbDataScreenConfigService extends IService<TbDataScreenConfig> {
 
    DataScreenConfigVO getRiskLevel();
 
    DataScreenConfigVO editRiskLevel(RiskLevelUpdDTO dto);
 
    List<DataScreenConfigVO> getIndicatorsConfig(@NotNull DataScreenConfigEnum type);
 
    List<DataScreenConfigVO> editDataIndicatorsConfig(List<DataIndicatorsUpdDTO> dtoList);
 
    List<DataScreenConfigVO> editFormalIndicatorsConfig(List<FormalIndicatorsUpdDTO> dtoList);
}