接口 ConfigInfoBetaMapper

    • 方法详细资料

      • updateConfigInfo4BetaCas

        java.lang.String updateConfigInfo4BetaCas()
        Update beta configuration information. UPDATE config_info_beta SET content=?, md5=?, beta_ips=?, src_ip=?,src_user=?,gmt_modified=?,app_name=? WHERE data_id=? AND group_id=? AND tenant_id=? AND (md5=? or md5 is null or md5='')
        返回:
        The sql of updating beta configuration information.
      • findAllConfigInfoBetaForDumpAllFetchRows

        java.lang.String findAllConfigInfoBetaForDumpAllFetchRows​(int startRow,
                                                                  int pageSize)
        Query all beta config info for dump task. The default sql: SELECT t.id,data_id,group_id,tenant_id,app_name,content,md5,gmt_modified,beta_ips,encrypted_data_key FROM ( SELECT id FROM config_info_beta ORDER BY id LIMIT startRow,pageSize ) g, config_info_beta t WHERE g.id = t.id
        参数:
        startRow - The start index.
        pageSize - The size of page.
        返回:
        The sql of querying all beta config info for dump task.