接口 ConfigTagsRelationMapper

所有超级接口:
Mapper
所有已知实现类:
ConfigInfoTagsRelationMapperByDerby, ConfigTagsRelationMapperByMySql

public interface ConfigTagsRelationMapper extends Mapper
The config with tags mapper.
作者:
hyx
  • 方法详细资料

    • findConfigInfo4PageCountRows

      default MapperResult findConfigInfo4PageCountRows(MapperContext context)
      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

      MapperResult findConfigInfo4PageFetchRows(MapperContext context)
      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

      default MapperResult findConfigInfoLike4PageCountRows(MapperContext context)
      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

      MapperResult findConfigInfoLike4PageFetchRows(MapperContext context)
      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

      default String getTableName()
      获取返回表名.
      指定者:
      getTableName 在接口中 Mapper
      返回:
      表名