Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
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
haoban3.0
haoban-manage3.0
Commits
88ec5ba1
Commit
88ec5ba1
authored
Dec 21, 2021
by
墨竹
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:tab_haoban_wx_application增加字段
parent
a8b75126
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletions
+11
-1
WxApplicationMapper.xml
...service/src/main/resources/mapper/WxApplicationMapper.xml
+11
-1
No files found.
haoban-manage3-service/src/main/resources/mapper/WxApplicationMapper.xml
View file @
88ec5ba1
...
...
@@ -3,6 +3,7 @@
<mapper
namespace=
"com.gic.haoban.manage.service.dao.mapper.WxApplicationMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.gic.haoban.manage.service.entity.TabHaobanWxApplication"
>
<id
column=
"wx_application_id"
property=
"wxApplicationId"
jdbcType=
"VARCHAR"
/>
<result
column=
"corpid"
property=
"corpid"
jdbcType=
"VARCHAR"
/>
<result
column=
"site_id"
property=
"siteId"
jdbcType=
"VARCHAR"
/>
<result
column=
"name"
property=
"name"
jdbcType=
"VARCHAR"
/>
<result
column=
"permanent_code"
property=
"permanentCode"
jdbcType=
"VARCHAR"
/>
...
...
@@ -16,7 +17,7 @@
<result
column=
"update_time"
property=
"updateTime"
jdbcType=
"TIMESTAMP"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
wx_application_id, site_id, name, permanent_code, agent_name, agent_id, application_type,
wx_application_id,
corpid,
site_id, name, permanent_code, agent_name, agent_id, application_type,
wx_enterprise_id, status_flag, create_time, update_time,is_customized_app
</sql>
...
...
@@ -39,6 +40,9 @@
<if
test=
"wxApplicationId != null"
>
wx_application_id,
</if>
<if
test=
"corpid != null"
>
corpid,
</if>
<if
test=
"siteId != null"
>
site_id,
</if>
...
...
@@ -77,6 +81,9 @@
<if
test=
"wxApplicationId != null"
>
#{wxApplicationId,jdbcType=VARCHAR},
</if>
<if
test=
"corpid != null"
>
#{corpid,jdbcType=VARCHAR},
</if>
<if
test=
"siteId != null"
>
#{siteId,jdbcType=VARCHAR},
</if>
...
...
@@ -116,6 +123,9 @@
parameterType=
"com.gic.haoban.manage.service.entity.TabHaobanWxApplication"
>
update tab_haoban_wx_application
<set>
<if
test=
"corpid != null"
>
corpid = #{corpid,jdbcType=VARCHAR},
</if>
<if
test=
"siteId != null"
>
site_id = #{siteId,jdbcType=VARCHAR},
</if>
...
...
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