VisitorChannel优化.

This commit is contained in:
aoshiguchen
2023-02-06 10:11:38 +08:00
parent 9aa0d362d1
commit aab60fc5e2
@@ -62,7 +62,8 @@ public interface LicenseMapper extends SqlMapper {
@Select("select * from license")
List<LicenseDO> listAll();
@Select("select * from license where user_id := userId")
@ResultType(LicenseDO.class)
@Select("select * from `license` where user_id = :userId")
List<LicenseDO> listByUserId(@Param("userId") Integer userId);
/**