Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
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
黄奎
Education
Commits
3e37de14
Commit
3e37de14
authored
Apr 11, 2022
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
7bdc1ffa
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
FinanceController.cs
Edu.WebApi/Controllers/Finance/FinanceController.cs
+14
-1
appsettings.json
Edu.WebApi/appsettings.json
+3
-1
No files found.
Edu.WebApi/Controllers/Finance/FinanceController.cs
View file @
3e37de14
...
...
@@ -2,6 +2,7 @@
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Threading.Tasks
;
using
Edu.Common
;
using
Edu.Common.API
;
using
Edu.Common.Enum.Finance
;
using
Edu.Common.Plugin
;
...
...
@@ -2674,6 +2675,18 @@ namespace Edu.WebApi.Controllers.Finance
#
endregion
#
region
财务收款手续费
/// <summary>
/// 获取财务收款手续费
/// </summary>
/// <returns></returns>
[
HttpPost
]
public
ApiResult
GetFinanceIncomeFeeRate
()
{
string
IncomeFeeRate
=
Config
.
ReadConfigKey
(
"IncomeFeeRate"
);
return
ApiResult
.
Success
(
""
,
IncomeFeeRate
);
}
#
endregion
}
}
Edu.WebApi/appsettings.json
View file @
3e37de14
...
...
@@ -118,5 +118,7 @@
//新业绩提成启用时间
"NewAchievementsEnable"
:
"2022-01-01"
,
//Vip课程申请流程编号
"VipCourseFlowId"
:
11
"VipCourseFlowId"
:
11
,
//甲鹤收款手续费
"IncomeFeeRate"
:
"0.0025,0.0054,0.006,0.04,0.004"
}
\ No newline at end of file
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