| | |
| | | |
| | | 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> |
| | |
| | | */ |
| | | 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); |
| | | } |