接口 ConfigTagsRelationMapper
- 所有超级接口:
Mapper
The config with tags mapper.
- 作者:
- hyx
-
方法概要
修饰符和类型方法说明default MapperResultGet the count of config info.Find config info.default MapperResultGet the count of config information by config tags relation.Query config info.default String获取返回表名.从接口继承的方法 com.alibaba.nacos.plugin.datasource.mapper.Mapper
count, delete, getDataSource, getFunction, getPrimaryKeyGeneratedKeys, insert, select, update
-
方法详细资料
-
findConfigInfo4PageCountRows
Get the count of config info. The default sql: SELECT count(*) FROM config_info WHERE ...- 参数:
context- The map of params, the key is the parameter name(dataId, groupId, tenantId, appName, startTime, endTime, content), the value is the key's value.- 返回:
- The sql of get config info.
-
findConfigInfo4PageFetchRows
Find config info. The default sql: SELECT a.id,a.data_id,a.group_id,a.tenant_id,a.app_name,a.content FROM config_info a LEFT JOIN config_tags_relation b ON a.id=b.i ...- 参数:
context- The keys and values are dataId and group.- 返回:
- The sql of finding config info.
-
findConfigInfoLike4PageCountRows
Get the count of config information by config tags relation. The default sql: SELECT count(*) FROM config_info a LEFT JOIN config_tags_relation b ON a.id=b.id- 参数:
context- the keys and values are dataId and group.- 返回:
- The sql of getting the count of config information.
-
findConfigInfoLike4PageFetchRows
Query config info. The default sql: SELECT a.id,a.data_id,a.group_id,a.tenant_id,a.app_name,a.content FROM config_info a LEFT JOIN config_tags_relation b ON a.id=b.id- 参数:
context- the keys and values are dataId and group.- 返回:
- The sql of querying config info.
-
getTableName
获取返回表名.- 指定者:
getTableName在接口中Mapper- 返回:
- 表名
-