mitao
2024-04-12 a7a8a50f48c1bff5ddc52b3bad1782328f8043d8
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
package com.ruoyi.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.domain.TbDataScreenConfig;
import com.ruoyi.system.dto.update.DataIndicatorsUpdDTO;
import com.ruoyi.system.dto.update.FormalIndicatorsUpdDTO;
import com.ruoyi.system.dto.update.RiskLevelUpdDTO;
import com.ruoyi.system.query.DataScreenConfigQuery;
import com.ruoyi.system.vo.DataScreenConfigVO;
import java.util.List;
 
/**
 * <p>
 * 大屏数据配置表 服务类
 * </p>
 *
 * @author mitao
 * @since 2024-03-13
 */
public interface TbDataScreenConfigService extends IService<TbDataScreenConfig> {
 
    DataScreenConfigVO getRiskLevel();
 
    DataScreenConfigVO editRiskLevel(RiskLevelUpdDTO dto);
 
    List<DataScreenConfigVO> getIndicatorsConfig(DataScreenConfigQuery query);
 
    DataScreenConfigVO editDataIndicatorsConfig(DataIndicatorsUpdDTO dto);
 
    DataScreenConfigVO editFormalIndicatorsConfig(FormalIndicatorsUpdDTO dto);
}