• 杂乱杂乱


    /**
         * 获取流程名称
         * @return
         * @throws CordysException
         */
        public List<String> getProcessNameList() throws CordysException{
            List<String> list = new ArrayList<String>();
            try{
                String strSql = ""
                        + "select DISTINCT process_name "
                        + "  from bpm_process_instance "
                        + " where sys_status = 1 "
                        + "  and  (status not in('已中止','已完成') OR status IS NULL)";
    
                // add by wj 从读库中获取数据 20181112 start
                List<Record> record=Db.use(BlConstant.READ_ONLY).find(strSql);
                // add by wj 从读库中获取数据 20181112 end
                for(int i=0;i<record.size();i++){
                    String processName=record.get(i).get("processName");
                    list.add(processName);
                    
                }
                
                //去重
            }catch(Exception e){
                logger.error("获取流程名称失败");
            }
            return list;
        }
    if ( data.firmApproveResult == "10" ) { // 律所审核结果为建议退单时,将此行加深颜色并高亮设置
                                       $('td', row).parents("tr").addClass('priority-1 priority-hover');
                                 }
  • 相关阅读:
    NOIP模拟测试17
    C++11下的关键字
    Tyvj 1518 CPU监控(线段树)
    单身三连之三
    论求解线性方程
    单身三连之二
    单身三连之一
    20190719总结
    卡常
    论突变为零(不定更新)
  • 原文地址:https://www.cnblogs.com/xiaoniuniu886/p/11044898.html
Copyright © 2020-2023  润新知