摘要: SmartSql https://smartsql.net/guide/getting-started.html 阅读全文
posted @ 2024-04-23 12:51 乌卡拉卡 阅读(2) 评论(0) 推荐(0) 编辑
摘要: c#代码: 点击查看代码 var xmlData = new XDocument(new XElement("Data", query.weldPlanList.Select(r => new XElement("Row", new XAttribute("APSFactoryID", query. 阅读全文
posted @ 2024-04-16 12:57 乌卡拉卡 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://juejin.cn/post/7127440050937151525 阅读全文
posted @ 2024-01-15 09:19 乌卡拉卡 阅读(13) 评论(0) 推荐(0) 编辑
摘要: http://demo.jeeagile.vip/ 阅读全文
posted @ 2024-01-11 10:43 乌卡拉卡 阅读(7) 评论(0) 推荐(0) 编辑
摘要: https://juejin.cn/post/7030362678199582734?searchId=20231016112439E79722A214C7C6DF1345 阅读全文
posted @ 2023-10-16 11:37 乌卡拉卡 阅读(20) 评论(0) 推荐(0) 编辑
摘要: --树形sql查询 WITH TREE AS( --创建一个虚拟表 SELECT * FROM tableName --指定需要查询的表 WHERE id = '' -- 指定父节点条件 UNION ALL --联合查询 SELECT tableName.* FROM tableName,TREE 阅读全文
posted @ 2023-06-15 17:50 乌卡拉卡 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 一、根据表单类型查询其所有的上级表单类型: 1、每次按照一个子节点的值进行查询: with partents as ( select * from JCBDFL where BDFLDM ='14' UNION ALL (SELECT a.* from JCBDFL as a inner join 阅读全文
posted @ 2023-06-15 17:46 乌卡拉卡 阅读(375) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/binzi/p/12199906.html 阅读全文
posted @ 2023-06-05 10:46 乌卡拉卡 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 点击查看代码 ``` /** * @description 查找包含自身节点的父代节点 * @param list 列表数据 * @param id 节点 id * @param pid 节点的父id */ export function listToTree(list, id, pid) { li 阅读全文
posted @ 2023-05-25 14:09 乌卡拉卡 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 点击查看代码 /** * base64转字符串 * @param {String} str * @returns */ export function strEncode64(str) { // 对字符串进行编码 var encode = encodeURI(str); // 对编码的字符串转化ba 阅读全文
posted @ 2023-05-12 16:27 乌卡拉卡 阅读(96) 评论(0) 推荐(0) 编辑