Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sample-form-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
sample-form-platform
Commits
6fb8f5cc
Commit
6fb8f5cc
authored
Nov 18, 2022
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加级联删除事项材料
parent
28203c97
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
276 additions
and
231 deletions
+276
-231
sample-form-manager/src/main/resources/sqlmap/module/hotword/HotwordMapper.xml
...rc/main/resources/sqlmap/module/hotword/HotwordMapper.xml
+246
-231
sample-form-manager/src/main/resources/sqlmap/module/matter/MatterDatumMapper.xml
...main/resources/sqlmap/module/matter/MatterDatumMapper.xml
+15
-0
sample-form-manager/src/main/resources/sqlmap/module/pubdatum/PubdatumMapper.xml
.../main/resources/sqlmap/module/pubdatum/PubdatumMapper.xml
+15
-0
No files found.
sample-form-manager/src/main/resources/sqlmap/module/hotword/HotwordMapper.xml
View file @
6fb8f5cc
This diff is collapsed.
Click to expand it.
sample-form-manager/src/main/resources/sqlmap/module/matter/MatterDatumMapper.xml
View file @
6fb8f5cc
...
...
@@ -379,6 +379,21 @@
#{item}
</foreach>
</delete>
<!-- 根据主健列表删除一批,针对单一主健有效 -->
<delete
id=
"deleteByKeyList"
>
delete from mortals_xhx_matter_datum where id in
<foreach
collection=
"list"
item=
"item"
index=
"index"
open=
"("
separator=
","
close=
")"
>
#{item}
</foreach>
</delete>
<!-- 根据对象列表删除一批,针对单一主健有效 -->
<delete
id=
"deleteByEntityList"
>
delete from mortals_xhx_matter_datum where id in
<foreach
collection=
"list"
item=
"item"
index=
"index"
open=
"("
separator=
","
close=
")"
>
#{item.id}
</foreach>
</delete>
<!-- 根据paramDto删除一批 -->
<delete
id=
"deleteByMap"
parameterType=
"paramDto"
>
delete a.* from mortals_xhx_matter_datum as a
...
...
sample-form-manager/src/main/resources/sqlmap/module/pubdatum/PubdatumMapper.xml
View file @
6fb8f5cc
...
...
@@ -313,6 +313,21 @@
#{item}
</foreach>
</delete>
<!-- 根据主健列表删除一批,针对单一主健有效 -->
<delete
id=
"deleteByKeyList"
>
delete from mortals_xhx_pubdatum where id in
<foreach
collection=
"list"
item=
"item"
index=
"index"
open=
"("
separator=
","
close=
")"
>
#{item}
</foreach>
</delete>
<!-- 根据对象列表删除一批,针对单一主健有效 -->
<delete
id=
"deleteByEntityList"
>
delete from mortals_xhx_pubdatum where id in
<foreach
collection=
"list"
item=
"item"
index=
"index"
open=
"("
separator=
","
close=
")"
>
#{item.id}
</foreach>
</delete>
<!-- 根据paramDto删除一批 -->
<delete
id=
"deleteByMap"
parameterType=
"paramDto"
>
delete a.* from mortals_xhx_pubdatum as a
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment