摘要: $(function(){ $('#datetimepicker').datetimepicker('show'); }); 阅读全文
posted @ 2024-06-13 11:33 花田007 阅读(1) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u011033906/article/details/98043369 阅读全文
posted @ 2024-06-13 10:06 花田007 阅读(2) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/676214659 阅读全文
posted @ 2024-06-12 09:56 花田007 阅读(3) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/nidimyger/article/details/129033042 阅读全文
posted @ 2024-03-20 10:34 花田007 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_48726994/article/details/134196961 阅读全文
posted @ 2024-03-12 09:10 花田007 阅读(4) 评论(0) 推荐(0) 编辑
摘要: select t.id_ from act_ru_task t where t.proc_inst_id=''; --查询出上面的taskid作为条件(千万不要直接用proc_inst_id直接查询下面的表)修改即可 select t.user_id_ from act_ru_identitylin 阅读全文
posted @ 2024-02-23 10:18 花田007 阅读(75) 评论(0) 推荐(0) 编辑
摘要: select * from act_ru_task t where sysdate - to_date(to_char(t.create_time_,'yyyy-mm-dd'),'yyyy-mm-dd')>14 其中t.create_time_字段格式:timestamp(6) 阅读全文
posted @ 2024-02-02 17:57 花田007 阅读(3) 评论(0) 推荐(0) 编辑
摘要: StringUtils.equalsAny是一个Apache Commons Lang库中的方法,用于比较一个字符串是否与给定的一组字符串中的任何一个相等。它返回一个布尔值,如果相等则为true,否则为false。 阅读全文
posted @ 2023-11-16 13:50 花田007 阅读(230) 评论(0) 推荐(0) 编辑
摘要: instr函数返回string2在string1中出现的位置 查询地址中不包括“山东”的数据 select * from sys_address t where instr(t.address,'山东')=0; 查询地址中包括“山东”的数据 select * from sys_address t w 阅读全文
posted @ 2023-11-01 16:08 花田007 阅读(6) 评论(0) 推荐(0) 编辑
摘要: public static String ImageToBase64(String imgPath) { InputStream in = null; byte[] data = null; // 读取图片字节数组 try { in = new FileInputStream(imgPath); d 阅读全文
posted @ 2023-10-18 10:12 花田007 阅读(133) 评论(0) 推荐(0) 编辑