Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zhengyuan-danger-chemistry-manage
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
耿迪迪
zhengyuan-danger-chemistry-manage
Commits
6549bf78
Commit
6549bf78
authored
Oct 20, 2022
by
zhangjianqian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改查询
parent
2f37381e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
TNfcSettingServiceImpl.java
...om/zehong/system/service/impl/TNfcSettingServiceImpl.java
+9
-1
TNfcSettingMapper.xml
...em/src/main/resources/mapper/system/TNfcSettingMapper.xml
+2
-3
No files found.
danger-manage-system/src/main/java/com/zehong/system/service/impl/TNfcSettingServiceImpl.java
View file @
6549bf78
...
...
@@ -7,6 +7,7 @@ import org.springframework.stereotype.Service;
import
com.zehong.system.mapper.TNfcSettingMapper
;
import
com.zehong.system.domain.TNfcSetting
;
import
com.zehong.system.service.ITNfcSettingService
;
import
org.springframework.transaction.annotation.Transactional
;
/**
* settingService业务层处理
...
...
@@ -75,9 +76,16 @@ public class TNfcSettingServiceImpl implements ITNfcSettingService
* @return 结果
*/
@Override
@Transactional
public
int
updateTNfcSetting
(
TNfcSetting
tNfcSetting
)
{
return
tNfcSettingMapper
.
updateTNfcSetting
(
tNfcSetting
);
TNfcSetting
ts
=
tNfcSettingMapper
.
getInfoByNfcNum
(
tNfcSetting
.
getNfcNum
());
if
(
ts
.
getNfcId
()!=
tNfcSetting
.
getNfcId
()){
ts
.
setNfcNum
(
""
);
tNfcSettingMapper
.
updateTNfcSetting
(
ts
);
}
int
a
=
tNfcSettingMapper
.
updateTNfcSetting
(
tNfcSetting
);
return
a
;
}
/**
...
...
danger-manage-system/src/main/resources/mapper/system/TNfcSettingMapper.xml
View file @
6549bf78
...
...
@@ -23,9 +23,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<include
refid=
"selectTNfcSettingVo"
/>
<where>
is_del='0'
and
region = #{region}
<if
test=
"patrolAddress != null and patrolAddress != ''"
>
and patrol_address = #{patrolAddress}
</if>
<if
test=
"region != null"
>
and region = #{region}
</if>
<if
test=
"patrolAddress != null and patrolAddress != ''"
>
and patrol_address like concat('%',#{patrolAddress},'%')
</if>
<if
test=
"nfcNum != null and nfcNum != ''"
>
and nfc_num = #{nfcNum}
</if>
</where>
order by patrol_sort
...
...
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