Commit 21a32346 authored by 吴卿华's avatar 吴卿华

上传修改

parent 3461347d
......@@ -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));
}
......
......@@ -51,6 +51,8 @@ public class TNfcSetting extends BaseEntity
*/
private String nickName;
public String getNickName() {
return nickName;
}
......
......@@ -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">
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment