11 changed files with 109 additions and 10 deletions
@ -0,0 +1,9 @@ |
|||
namespace BBWY.Client.Models |
|||
{ |
|||
public class SDGroupPersonStatisticsResponse |
|||
{ |
|||
public int MySDCount { get; set; } |
|||
|
|||
public decimal OrderPayment { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,12 @@ |
|||
namespace BBWY.Client.Models |
|||
{ |
|||
public class SDGroupPersonStatistics : NotifyObject |
|||
{ |
|||
private int mySDCount; |
|||
private decimal orderPayment; |
|||
|
|||
public int MySDCount { get => mySDCount; set { Set(ref mySDCount, value); } } |
|||
|
|||
public decimal OrderPayment { get => orderPayment; set { Set(ref orderPayment, value); } } |
|||
} |
|||
} |
@ -0,0 +1,15 @@ |
|||
namespace BBWY.Server.Model.Dto |
|||
{ |
|||
public class SDGroupPersonStatisticsResponse |
|||
{ |
|||
/// <summary>
|
|||
/// 我的总刷单量
|
|||
/// </summary>
|
|||
public int MySDCount { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 实付金额
|
|||
/// </summary>
|
|||
public decimal OrderPayment { get; set; } |
|||
} |
|||
} |
Loading…
Reference in new issue