增加平台配置的操作接口

This commit is contained in:
季圣华
2021-12-09 00:43:45 +08:00
parent d0fe0f3578
commit a1e59e8b3e
6 changed files with 64 additions and 28 deletions

View File

@@ -9,11 +9,11 @@ import java.util.List;
public interface PlatformConfigMapperEx {
List<PlatformConfig> selectByConditionPlatformConfig(
@Param("key") String key,
@Param("platformKey") String platformKey,
@Param("offset") Integer offset,
@Param("rows") Integer rows);
Long countsByPlatformConfig(
@Param("key") String key);
@Param("platformKey") String platformKey);
}