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
21a32346
Commit
21a32346
authored
Oct 20, 2022
by
吴卿华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
上传修改
parent
3461347d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
3 deletions
+7
-3
TNfcSettingController.java
...m/zehong/web/controller/system/TNfcSettingController.java
+1
-0
TNfcSetting.java
...m/src/main/java/com/zehong/system/domain/TNfcSetting.java
+2
-0
TNfcSettingMapper.xml
...em/src/main/resources/mapper/system/TNfcSettingMapper.xml
+2
-1
index.vue
danger-manage-web/src/views/system/tNfcSetting/index.vue
+2
-2
No files found.
danger-manage-admin/src/main/java/com/zehong/web/controller/system/TNfcSettingController.java
View file @
21a32346
...
...
@@ -97,6 +97,7 @@ public class TNfcSettingController extends BaseController
@PostMapping
public
AjaxResult
add
(
@RequestBody
TNfcSetting
tNfcSetting
)
{
System
.
out
.
println
(
tNfcSetting
);
return
toAjax
(
tNfcSettingService
.
insertTNfcSetting
(
tNfcSetting
));
}
...
...
danger-manage-system/src/main/java/com/zehong/system/domain/TNfcSetting.java
View file @
21a32346
...
...
@@ -51,6 +51,8 @@ public class TNfcSetting extends BaseEntity
*/
private
String
nickName
;
public
String
getNickName
()
{
return
nickName
;
}
...
...
danger-manage-system/src/main/resources/mapper/system/TNfcSettingMapper.xml
View file @
21a32346
...
...
@@ -13,10 +13,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result
property=
"nfcNum"
column=
"nfc_num"
/>
<result
property=
"createTime"
column=
"create_time"
/>
<result
property=
"isDel"
column=
"is_del"
/>
<result
property=
"region"
column=
"region"
/>
</resultMap>
<sql
id=
"selectTNfcSettingVo"
>
select nfc_id, patrol_sort, patrol_address, patrol_coment, patrol_frequency, nfc_num, create_time, is_del from t_nfc_setting
select nfc_id, patrol_sort, patrol_address, patrol_coment, patrol_frequency, nfc_num, create_time,
region,
is_del from t_nfc_setting
</sql>
<select
id=
"selectTNfcSettingList"
parameterType=
"TNfcSetting"
resultMap=
"TNfcSettingResult"
>
...
...
danger-manage-web/src/views/system/tNfcSetting/index.vue
View file @
21a32346
...
...
@@ -252,7 +252,8 @@ export default {
patrolFrequency
:
null
,
nfcNum
:
null
,
createTime
:
null
,
isDel
:
null
isDel
:
null
,
region
:
null
,
};
this
.
resetForm
(
"form"
);
},
...
...
@@ -299,7 +300,6 @@ export default {
this
.
getList
();
});
}
else
{
this
.
form
.
region
=
this
.
queryParams
.
region
;
addSetting
(
this
.
form
).
then
(
response
=>
{
this
.
msgSuccess
(
"新增成功"
);
this
.
open
=
false
;
...
...
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