Commit 55af8f79 authored by 黄奎's avatar 黄奎

页面修改

parent f3888c27
...@@ -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;
}
}
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment