上一页 1 2 3 4 5 6 7 8 ··· 15 下一页

2019年8月20日

工具1

摘要: package com.qhyf.app.bl.base.util; /** * * 提供对字符串的全角->半角,半角->全角转换 * codingwhy.com * */ public class BCConvertUtils { /** * ASCII表中可见字符从!开始,偏移位值为33(Decimal) */ ... 阅读全文

posted @ 2019-08-20 16:06 小白菜好吃 阅读(189) 评论(0) 推荐(0) 编辑

2019年8月19日

json 数据 ,递归处理获取 数据

摘要: /** * 获取旧供应商信息 * @param json * @return * @throws ActiveRecordException */ public Record getSuppRec(JSONArray json,String suppliersName) throws ActiveRecordException{ ... 阅读全文

posted @ 2019-08-19 14:18 小白菜好吃 阅读(878) 评论(0) 推荐(0) 编辑

JSONObject

摘要: public static void main(String[] args) throws ActiveRecordException { String suppId = ""; String beforeName = ""; // {"ProjectName":"企业基本信息","ChangeDate":"2019-06-... 阅读全文

posted @ 2019-08-19 14:16 小白菜好吃 阅读(371) 评论(0) 推荐(0) 编辑

验证修改金额必须为数字

摘要: blurFnNum: function (row) { // 验证修改金额必须为数字 let reg = /^\d+(\.\d+)?$/ if (row.assetsTrusteeshipIncome !== '' && row.assetsTrusteeshipIncome != null && !reg.test(row.assetsTrusteeshipIncome)) { this.war 阅读全文

posted @ 2019-08-19 13:55 小白菜好吃 阅读(260) 评论(0) 推荐(0) 编辑

2019年8月15日

优雅之道

摘要: 案例一 现象描述: 不完善的写法: thisName != null && thisName.equals(name); 更完善的写法: (thisName == name) || (thisName != null && thisName.equals(name)); 建议方案: Objects. 阅读全文

posted @ 2019-08-15 15:57 小白菜好吃 阅读(228) 评论(0) 推荐(0) 编辑

2019年8月13日

sum

摘要: SELECT sum(c.account_receivable) - IF(SUM(c.suppliers_money) is null,0,SUM(c.suppliers_money)) AS income_moneyFROM biz_asset_sec_info a, biz_asset_sec 阅读全文

posted @ 2019-08-13 10:55 小白菜好吃 阅读(176) 评论(0) 推荐(0) 编辑

job

摘要: package club.newepoch.admin.job import club.newepoch.admin.service.BizPayComfirmInfoJobService import club.newepoch.iweb.jfinal.plugins.quartz.AbstractJob import org.quartz.JobExecutionContext impor... 阅读全文

posted @ 2019-08-13 09:52 小白菜好吃 阅读(298) 评论(0) 推荐(0) 编辑

2019年8月7日

登录 要求 密码必须包含数字、大写字母、小写字母、特殊字字符4种中至少3种

摘要: 修改密码 | ${appName} - ${sysName} ${appName}-${sysName} ${appName} ... 阅读全文

posted @ 2019-08-07 00:15 小白菜好吃 阅读(7097) 评论(0) 推荐(0) 编辑

2019年8月6日

易犯毛病1

摘要: 阅读全文

posted @ 2019-08-06 15:59 小白菜好吃 阅读(162) 评论(0) 推荐(0) 编辑

2019年7月29日

job 异步获取

摘要: package club.newepoch.admin.job import club.newepoch.admin.service.BizPayComfirmInfoJobService import club.newepoch.iweb.jfinal.plugins.quartz.AbstractJob import cn.szqhyf.qhyffs.app.fs.ctl.FinanceG... 阅读全文

posted @ 2019-07-29 15:38 小白菜好吃 阅读(395) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 15 下一页

导航