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
a0be93d8
Commit
a0be93d8
authored
Mar 16, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
19887680
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
66 additions
and
55 deletions
+66
-55
CustomerRemitModule.cs
Edu.Module.Customer/CustomerRemitModule.cs
+62
-52
B2BRemitController.cs
Edu.WebApi/Controllers/Customer/B2BRemitController.cs
+4
-3
No files found.
Edu.Module.Customer/CustomerRemitModule.cs
View file @
a0be93d8
This diff is collapsed.
Click to expand it.
Edu.WebApi/Controllers/Customer/B2BRemitController.cs
View file @
a0be93d8
...
...
@@ -77,16 +77,17 @@ namespace Edu.WebApi.Controllers.Customer
/// </summary>
/// <returns></returns>
[
HttpPost
]
public
ApiResult
SetCustomerRemitState
()
{
public
ApiResult
SetCustomerRemitState
()
{
var
userInfo
=
base
.
UserInfo
;
JObject
parms
=
JObject
.
Parse
(
base
.
RequestParm
.
Msg
.
ToString
());
int
RemitId
=
parms
.
GetInt
(
"RemitId"
,
0
);
int
State
=
parms
.
GetInt
(
"State"
,
1
);
//状态 1审核通过 2审核驳回
string
Remark
=
parms
.
GetStringValue
(
"Remark"
);
//备注
if
(
RemitId
<=
0
)
{
if
(
RemitId
<=
0
)
{
return
ApiResult
.
ParamIsNull
(
"请传递提现ID"
);
}
string
msg
=
customerRemitModule
.
SetCustomerRemitState
(
RemitId
,
State
,
Remark
,
userInfo
);
if
(
msg
==
""
)
{
...
...
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