zoukankan      html  css  js  c++  java
  • kotlin 很杂很杂

    //        // 储存具体漏期的期数的一个变量
    //        var  periodsList = mutableListOf<String>()
    //        // 如果存在漏期
    //        if (searchResult <= 0){
    //            // 则找出存在的最大期数
    //            var maxSql = """
    //                SELECT
    //                    MAX(b.periods)
    //                FROM
    //                    biz_big_periods_info a,
    //                    biz_periods_mapping_info b
    //                WHERE
    //                    a.SYS_STATUS = 1
    //                AND b.SYS_STATUS = 1
    //                AND a.core_enterprise_id = ?
    //                AND a.financial_institutions_id = ?
    //                AND a.id = b.big_periods_id
    //            """.trimIndent()
    //            if (bigPeriodsId != null) {
    //                maxSql += " AND a.id <> '" + bigPeriodsId + "'"
    //            }
    //
    //            var maxPeriods = dbp.queryInt(maxSql, coreEnterpriseId, financialInstitutionsId)
    //
    //            if (maxPeriods != null){
    //                if (maxPeriods > periodsSmall ){
    //                    for ( i in periodsSmall..maxPeriods){
    //                        if (i==maxPeriods) continue  // i 为 maxPeriods 时跳过当前循环,继续下一次循环
    //                        if (i==periodsSmall) continue  // i 为 periodsSmall 时跳过当前循环,继续下一次循环
    //                        periodsList.add(i.toString())
    //                    }
    //                }else{
    //                    for ( i in maxPeriods..periodsSmall){
    //                        if (i==maxPeriods) continue  // i 为 maxPeriods 时跳过当前循环,继续下一次循环
    //                        if (i==periodsSmall) continue  // i 为 periodsSmall 时跳过当前循环,继续下一次循环
    //                        periodsList.add(i.toString())
    //                    }
    //                }
    //
    //            }
    //
    //        }
  • 相关阅读:
    continue用法
    break用法
    VLAN的划分
    子网掩码的计算
    简述RIP路由协议和OSPF路由协议的相同点和不同点。
    工程监理的内容是什么?
    工程监理的意义和职责是什么?
    双绞线测试的参数主要有哪些?
    光纤熔接损耗原因?
    综合布线系统的设计等级有哪几种?各有什么特点?
  • 原文地址:https://www.cnblogs.com/xiaoniuniu886/p/11088741.html
Copyright © 2011-2022 走看看