摘要: public static void main(String[] args) { try { List<Object> list = Lists.newArrayList(); Map<String, String> map = new HashMap<>(); map.put("name", "张 阅读全文
posted @ 2024-07-12 10:48 Liberty& 阅读(36) 评论(0) 推荐(0)
摘要: 自定义处理器 package com.ruoyi.web.part.service.impl; import com.alibaba.excel.metadata.data.WriteCellData; import com.alibaba.excel.util.BooleanUtils; impo 阅读全文
posted @ 2024-06-12 19:57 Liberty& 阅读(713) 评论(0) 推荐(0)
摘要: 一、类注释 打开位置: File —> Settings —> Editor —> File and Code Templates —> Files —> Class /** * 功能描述: $description * * @Author: 作者 * @Date: ${YEAR}-${MONTH} 阅读全文
posted @ 2023-01-29 15:06 Liberty& 阅读(190) 评论(0) 推荐(0)
摘要: 手型:<a style="cursor:pointer">手型</a> 禁止:<a style="cursor:not-allowed">禁止</a> 处理中:<a style="cursor:progress">处理中</a> 无法释放:<a style="cursor:no-drop">无法释放 阅读全文
posted @ 2022-11-04 15:27 Liberty& 阅读(263) 评论(0) 推荐(0)
摘要: /** * 功能描述: File转MultipartFile * * @param file File类型文件 * @return {@link org.springframework.web.multipart.MultipartFile} * @Author: XHD * @Date: 2022 阅读全文
posted @ 2022-10-20 16:38 Liberty& 阅读(451) 评论(0) 推荐(0)
摘要: /** * 功能描述: 递归遍历指定目录下所有文件 * * @param srcFile 指定文件 * @Author: XHD * @Date: 2022/10/20 */ public static void getAllFilePath(File srcFile) { // 获取给定的File 阅读全文
posted @ 2022-10-20 16:25 Liberty& 阅读(29) 评论(0) 推荐(0)
摘要: UPDATE table_a ta, table_b tb SET ta.NAME = tb.NAME WHERE ta.id = tb.id 阅读全文
posted @ 2022-10-08 14:25 Liberty& 阅读(48) 评论(0) 推荐(0)