| | |
| | | */ |
| | | public interface StandardMethodListMapper extends BaseMapper<StandardMethodList> { |
| | | |
| | | Map<String, String> selectStandardMethodById(Integer id); |
| | | Map<String, String> selectStandardMethodById(@Param("id") Integer id); |
| | | |
| | | String selectUserById(Integer id); |
| | | String selectUserById(@Param("id") Integer id); |
| | | |
| | | List<StandardMethodList> selectStandardMethodLists(String tree); |
| | | List<StandardMethodList> selectStandardMethodLists(@Param("tree") String tree); |
| | | |
| | | List<StandardMethodList> selectStandardMethodListsByNull(String tree); |
| | | List<StandardMethodList> selectStandardMethodListsByNull(@Param("tree") String tree); |
| | | |
| | | List<StandardMethodList> selectStandardMethodLists3(String tree); |
| | | List<StandardMethodList> selectStandardMethodLists3(@Param("tree") String tree); |
| | | |
| | | List<StandardMethodList> selectStandardMethodLists2(@Param("data1") String data1, @Param("data2") String data2, @Param("data3") String data3, @Param("data4") String data4, @Param("data5") String data5); |
| | | |
| | | List<StandardProductList> selectParameterList(String code); |
| | | List<StandardProductList> selectParameterList(@Param("code") String code); |
| | | |
| | | List<StandardMethodList> selectListEnum(); |
| | | |
| | | Integer getStandardMethodId(String code); |
| | | Integer getStandardMethodId(@Param("code") String code); |
| | | } |
| | | |
| | | |