package com.gkhy.labRiskManage.application.basic.service;
|
|
import com.gkhy.labRiskManage.application.basic.dto.dto.*;
|
import com.gkhy.labRiskManage.commons.domain.SearchResult;
|
import com.gkhy.labRiskManage.domain.basic.model.dto.FactorMesSDTO;
|
|
/**
|
* 评价因子
|
*/
|
public interface FactorAppService {
|
|
/**
|
* 评价因子LEC-L 列表
|
*/
|
SearchResult<FactorLecLAppListDTO> listLecL();
|
/**
|
* 评价因子LEC-E 列表
|
*/
|
SearchResult<FactorLecEAppListDTO> listLecE();
|
/**
|
* 评价因子LEC-C 列表
|
*/
|
SearchResult<FactorLecCAppListDTO> listLecC();
|
/**
|
* 评价因子LS-L 列表
|
*/
|
SearchResult<FactorLsLAppListDTO> listLsL();
|
/**
|
* 评价因子LS-S 列表
|
*/
|
SearchResult<FactorLsSAppListDTO> listLsS();
|
/**
|
* 评价因子Mes-M 列表
|
*/
|
SearchResult<FactorMesMAppListDTO> listMesM();
|
/**
|
* 评价因子Mes-E 列表
|
*/
|
SearchResult<FactorMesEAppListDTO> listMesE();
|
/**
|
* 评价因子Mes-S 列表
|
*/
|
SearchResult<FactorMesSAppListDTO> listMesS();
|
/**
|
* 评价因子Rs-R 列表
|
*/
|
SearchResult<FactorRsRAppListDTO> listRsR();
|
/**
|
* 评价因子Rs-S 列表
|
*/
|
SearchResult<FactorRsSAppListDTO> listRsS();
|
}
|