添加清洗行业父级代码-添加描述

This commit is contained in:
sh
2025-12-02 11:25:22 +08:00
parent e5e3c8723c
commit c0ce6236f3

View File

@@ -134,6 +134,10 @@ public class IndustryController extends BaseController
/**
* 修改行业父级代码
* select * from industry where length(remark)=1 order by order_num;
* select * from industry where length(remark)=3 and remark like 'A%' order by order_num;
* select * from industry where length(remark)=4 and remark like 'A01%' order by order_num;
* select * from industry where length(remark)=5 and remark like 'A011%' order by order_num;
*/
@PostMapping("/updateParentHierarchy")
@Transactional(rollbackFor = Exception.class)