feat(oa): 添加步骤排序字段并更新相关逻辑
- 在 NodeDTO 中新增 sortNum 字段用于步骤排序 - 更新 OaProjectScheduleStepMapper.xml 支持 sort_num 字段插入 - 修改 OaProjectScheduleStepServiceImpl 设置 sortNum 值 - 在 TableDataConstantUtil 中为所有节点添加 sortNum 排序值 - 调整 createNode 方法签名以支持 sortNum 参数传递
This commit is contained in:
@@ -61,7 +61,8 @@
|
||||
tab_node,
|
||||
first_level_node,
|
||||
second_level_node,
|
||||
specification
|
||||
specification,
|
||||
sort_num
|
||||
) VALUES
|
||||
<foreach item="item" index="index" collection="list" separator=",">
|
||||
(
|
||||
@@ -71,7 +72,8 @@
|
||||
#{item.tabNode},
|
||||
#{item.firstLevelNode},
|
||||
#{item.secondLevelNode},
|
||||
#{item.specification}
|
||||
#{item.specification},
|
||||
#{item.sortNum}
|
||||
)
|
||||
</foreach>
|
||||
</insert>
|
||||
|
||||
Reference in New Issue
Block a user