类 ConfigTagsRelationMapperByMySql

    • 构造器详细资料

      • ConfigTagsRelationMapperByMySql

        public ConfigTagsRelationMapperByMySql()
    • 方法详细资料

      • findConfigInfo4PageCountRows

        public java.lang.String findConfigInfo4PageCountRows​(java.util.Map<java.lang.String,​java.lang.String> params,
                                                             int tagSize)
        从接口复制的说明: ConfigTagsRelationMapper
        Get the count of config info. The default sql: SELECT count(*) FROM config_info WHERE ...
        指定者:
        findConfigInfo4PageCountRows 在接口中 ConfigTagsRelationMapper
        参数:
        params - The map of params, the key is the parameter name(dataId, groupId, tenantId, appName, startTime, endTime, content), the value is the key's value.
        tagSize - the tags name size.
        返回:
        The sql of get config info.
      • findConfigInfo4PageFetchRows

        public java.lang.String findConfigInfo4PageFetchRows​(java.util.Map<java.lang.String,​java.lang.String> params,
                                                             int tagSize,
                                                             int startRow,
                                                             int pageSize)
        从接口复制的说明: ConfigTagsRelationMapper
        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 ...
        指定者:
        findConfigInfo4PageFetchRows 在接口中 ConfigTagsRelationMapper
        参数:
        params - The keys and values are dataId and group.
        tagSize - the tags name size.
        startRow - The start index.
        pageSize - The size of page.
        返回:
        The sql of finding config info.
      • findConfigInfoLike4PageCountRows

        public java.lang.String findConfigInfoLike4PageCountRows​(java.util.Map<java.lang.String,​java.lang.String> params,
                                                                 int tagSize)
        从接口复制的说明: ConfigTagsRelationMapper
        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
        指定者:
        findConfigInfoLike4PageCountRows 在接口中 ConfigTagsRelationMapper
        参数:
        params - the keys and values are dataId and group.
        tagSize - the tags name size.
        返回:
        The sql of getting the count of config information.
      • findConfigInfoLike4PageFetchRows

        public java.lang.String findConfigInfoLike4PageFetchRows​(java.util.Map<java.lang.String,​java.lang.String> params,
                                                                 int tagSize,
                                                                 int startRow,
                                                                 int pageSize)
        从接口复制的说明: ConfigTagsRelationMapper
        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
        指定者:
        findConfigInfoLike4PageFetchRows 在接口中 ConfigTagsRelationMapper
        参数:
        params - the keys and values are dataId and group.
        tagSize - the tags name size.
        startRow - The start index.
        pageSize - The size of page.
        返回:
        The sql of querying config info.
      • getTableName

        public java.lang.String getTableName()
        从接口复制的说明: Mapper
        Get the name of table.
        指定者:
        getTableName 在接口中 Mapper
        返回:
        The name of table.
      • getDataSource

        public java.lang.String getDataSource()
        从接口复制的说明: Mapper
        Get the datasource name.
        指定者:
        getDataSource 在接口中 Mapper
        返回:
        The name of datasource.