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
1cc12c6c
Commit
1cc12c6c
authored
Aug 17, 2022
by
墨竹
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:收费删除wxuserid
parent
6019750f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
22 deletions
+5
-22
TabHaobanQywxFeeAccountStaff.java
...nage/service/entity/fee/TabHaobanQywxFeeAccountStaff.java
+0
-12
HaobanQywxFeeApiServiceImpl.java
...ice/service/out/impl/fee/HaobanQywxFeeApiServiceImpl.java
+0
-1
TabHaobanQywxFeeAccountStaffMapper.xml
...sources/mapper/fee/TabHaobanQywxFeeAccountStaffMapper.xml
+5
-9
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/entity/fee/TabHaobanQywxFeeAccountStaff.java
View file @
1cc12c6c
...
...
@@ -20,10 +20,6 @@ public class TabHaobanQywxFeeAccountStaff implements Serializable {
private
String
wxEnterpriseId
;
/**
* 用户id
*/
private
String
wxUserId
;
/**
* 员工id
*/
private
String
staffId
;
...
...
@@ -77,14 +73,6 @@ public class TabHaobanQywxFeeAccountStaff implements Serializable {
this
.
wxEnterpriseId
=
wxEnterpriseId
;
}
public
String
getWxUserId
()
{
return
wxUserId
;
}
public
void
setWxUserId
(
String
wxUserId
)
{
this
.
wxUserId
=
wxUserId
;
}
public
String
getStaffId
()
{
return
staffId
;
}
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/fee/HaobanQywxFeeApiServiceImpl.java
View file @
1cc12c6c
...
...
@@ -327,7 +327,6 @@ public class HaobanQywxFeeApiServiceImpl implements HaobanQywxFeeApiService {
tabHaobanQywxFeeAccountStaff
.
setFeeAccountStaffId
(
UniqueIdUtils
.
uniqueLong
());
tabHaobanQywxFeeAccountStaff
.
setCorpId
(
corpid
);
tabHaobanQywxFeeAccountStaff
.
setWxEnterpriseId
(
wxEnterpriseId
);
tabHaobanQywxFeeAccountStaff
.
setWxUserId
(
userid
);
if
(
tabHaobanStaff
!=
null
)
{
String
staffId
=
tabHaobanStaff
.
getStaffId
();
tabHaobanQywxFeeAccountStaff
.
setStaffId
(
staffId
);
...
...
haoban-manage3-service/src/main/resources/mapper/fee/TabHaobanQywxFeeAccountStaffMapper.xml
View file @
1cc12c6c
...
...
@@ -7,7 +7,6 @@
<result
property=
"orderId"
column=
"order_id"
jdbcType=
"VARCHAR"
/>
<result
property=
"corpId"
column=
"corp_id"
jdbcType=
"VARCHAR"
/>
<result
property=
"wxEnterpriseId"
column=
"wx_enterprise_id"
jdbcType=
"VARCHAR"
/>
<result
property=
"wxUserId"
column=
"wx_user_id"
jdbcType=
"VARCHAR"
/>
<result
property=
"staffId"
column=
"staff_id"
jdbcType=
"VARCHAR"
/>
<result
property=
"activeCode"
column=
"active_code"
jdbcType=
"VARCHAR"
/>
<result
property=
"accountType"
column=
"account_type"
jdbcType=
"INTEGER"
/>
...
...
@@ -17,7 +16,7 @@
<sql
id=
"Base_Column_List"
>
fee_account_staff_id
, order_id, corp_id, wx_enterprise_id,
wx_user_id,
staff_id, active_code, account_type, expire_time, active_time
, order_id, corp_id, wx_enterprise_id, staff_id, active_code, account_type, expire_time, active_time
</sql>
<!--查询单个-->
...
...
@@ -71,18 +70,18 @@
<!--新增所有列-->
<insert
id=
"insert"
keyProperty=
"feeAccountId"
useGeneratedKeys=
"true"
>
insert into tab_haoban_qywx_fee_account_staff(fee_account_staff_id, order_id, corp_id, wx_enterprise_id,
wx_user_id,
insert into tab_haoban_qywx_fee_account_staff(fee_account_staff_id, order_id, corp_id, wx_enterprise_id,
staff_id, active_code, account_type, expire_time, active_time)
values (#{feeAccountStaffId}, #{orderId}, #{corpId}, #{wxEnterpriseId}, #{
wxUserId}, #{
staffId}, #{activeCode},
values (#{feeAccountStaffId}, #{orderId}, #{corpId}, #{wxEnterpriseId}, #{staffId}, #{activeCode},
#{accountType}, #{expireTime}, #{activeTime})
</insert>
<insert
id=
"insertBatch"
keyProperty=
"feeAccountId"
useGeneratedKeys=
"true"
>
insert into tab_haoban_qywx_fee_account_staff(fee_account_staff_id, order_id, corp_id, wx_enterprise_id,
wx_user_id,
insert into tab_haoban_qywx_fee_account_staff(fee_account_staff_id, order_id, corp_id, wx_enterprise_id,
staff_id, active_code, account_type, expire_time, active_time)
values
<foreach
collection=
"entities"
item=
"entity"
separator=
","
>
(#{entity.feeAccountStaffId}, #{entity.orderId}, #{entity.corpId}, #{entity.wxEnterpriseId},
#{entity.wxUserId},
(#{entity.feeAccountStaffId}, #{entity.orderId}, #{entity.corpId}, #{entity.wxEnterpriseId},
#{entity.staffId}, #{entity.activeCode}, #{entity.accountType}, #{entity.expireTime}, #{entity.activeTime})
</foreach>
</insert>
...
...
@@ -101,9 +100,6 @@
<if
test=
"wxEnterpriseId != null and wxEnterpriseId != ''"
>
wx_enterprise_id = #{wxEnterpriseId},
</if>
<if
test=
"wxUserId != null and wxUserId != ''"
>
wx_user_id = #{wxUserId},
</if>
<if
test=
"staffId != null and staffId != ''"
>
staff_id = #{staffId},
</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