修复启动异常

This commit is contained in:
648540858
2024-10-21 06:57:53 +08:00
parent f62b655602
commit 13b896ce23

View File

@@ -45,13 +45,6 @@ public interface JTChannelMapper {
@SelectProvider(type = JTChannelProvider.class, method = "selectChannelByChannelId")
JTChannel selectChannelByChannelId(@Param("terminalDbId") int terminalDbId, @Param("channelId") Integer channelId);
@Select(value = {" <script>" +
" SELECT * " +
" from " +
" wvp_jt_channel" +
" WHERE " +
" id = #{id}" +
" </script>"})
@SelectProvider(type = JTChannelProvider.class, method = "selectChannelById")
JTChannel selectChannelById(@Param("id") Integer id);
}