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
55af8f79
Commit
55af8f79
authored
Dec 07, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
f3888c27
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
RB_Customer_BalanceDetail_ViewModel.cs
...ViewModel/Customer/RB_Customer_BalanceDetail_ViewModel.cs
+40
-0
No files found.
Edu.Model/ViewModel/Customer/RB_Customer_BalanceDetail_ViewModel.cs
View file @
55af8f79
...
@@ -74,5 +74,45 @@ namespace Edu.Model.ViewModel.Customer
...
@@ -74,5 +74,45 @@ namespace Edu.Model.ViewModel.Customer
/// 订单编号
/// 订单编号
/// </summary>
/// </summary>
public
string
QOrderIds
{
get
;
set
;
}
public
string
QOrderIds
{
get
;
set
;
}
/// <summary>
/// 返佣状态字符串
/// </summary>
public
string
BalanceStateStr
{
get
{
string
str
=
"待返佣"
;
if
(
this
.
BalanceState
==
1
)
{
str
=
"已返佣"
;
}
else
if
(
this
.
BalanceState
==
2
)
{
str
=
"待返佣"
;
}
return
str
;
}
}
/// <summary>
/// 是否提现字符串
/// </summary>
public
string
RemitStr
{
get
{
string
str
=
"未提现"
;
if
(
this
.
IsRemit
==
1
)
{
str
=
"已提现"
;
}
else
if
(
this
.
IsRemit
==
2
)
{
str
=
"未提现"
;
}
return
str
;
}
}
}
}
}
}
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