Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
T
tcm-system
Project
Project
Details
Activity
Releases
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
TCM
tcm-system
Commits
fdd8ad67
Commit
fdd8ad67
authored
Nov 19, 2021
by
tangfang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改注册判断银行卡
parent
c128baf6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
CapitalFlowDaoImpl.java
...m/pangding/web/authority/dao/impl/CapitalFlowDaoImpl.java
+2
-2
UserTask.java
src/main/java/com/pangding/web/authority/util/UserTask.java
+1
-1
No files found.
src/main/java/com/pangding/web/authority/dao/impl/CapitalFlowDaoImpl.java
View file @
fdd8ad67
...
...
@@ -34,10 +34,10 @@ public class CapitalFlowDaoImpl extends BaseDaoImpl implements CapitalFlowDao {
table
.
add
(
QUERY_LIST_TOTAL
,
"SELECT SUM(CASE WHEN category = 0 THEN order_money ELSE 0 END) AS orderMoney,"
+
"SUM(CASE WHEN category = 0 THEN order_fee ELSE 0 END) AS orderFee,"
+
"SUM(CASE WHEN category = 0 THEN actual_money ELSE 0 END) AS
actu
alMoney,"
+
"SUM(CASE WHEN category = 0 THEN actual_money ELSE 0 END) AS
re
alMoney,"
+
"SUM(CASE WHEN category = 1 THEN order_money ELSE 0 END) AS withdrawalAmount,"
+
"SUM(CASE WHEN category = 3 THEN actual_money ELSE 0 END) AS refundMoney,"
+
"SUM(CASE WHEN category <> 3 THEN actual_money ELSE 0 END) - SUM(CASE WHEN category = 1 THEN order_money ELSE 0 END) as
re
alMoney"
+
"SUM(CASE WHEN category <> 3 THEN actual_money ELSE 0 END) - SUM(CASE WHEN category = 1 THEN order_money ELSE 0 END) as
actu
alMoney"
+
" FROM pd_capital_flow where 1=1 {WHERE} order by time desc"
)
.
add
(
"companyId"
,
" AND company_id = ? "
)
.
add
(
"companyName"
,
" AND company_name LIKE concat(?,'%')"
)
...
...
src/main/java/com/pangding/web/authority/util/UserTask.java
View file @
fdd8ad67
...
...
@@ -76,7 +76,7 @@ public class UserTask {
/**
* 服务费
*/
//
@Scheduled(cron = "0 10 0 * * ?")
@Scheduled
(
cron
=
"0 10 0 * * ?"
)
public
void
serviceCharge
()
{
CompanyReqVo
companyReqVo
=
new
CompanyReqVo
();
companyReqVo
.
setServiceChargeStatus
(
1
);
...
...
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