47 lines
1.1 KiB
C#
47 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Domain.Message.Response.LxmZHMDReport
|
|
{
|
|
public class PerformanceResp
|
|
{
|
|
/// <summary>
|
|
/// 总收款
|
|
/// </summary>
|
|
public decimal TotalCollection { get; set; }
|
|
|
|
/// <summary>
|
|
/// 总业绩
|
|
/// </summary>
|
|
public decimal TotalPerformance { get; set; }
|
|
|
|
/// <summary>
|
|
/// 饰品%
|
|
/// </summary>
|
|
public string OrnamentsPercent { get; set; }
|
|
|
|
/// <summary>
|
|
/// 化妆品%
|
|
/// </summary>
|
|
public string CosmeticsPercent { get; set; }
|
|
|
|
/// <summary>
|
|
/// 护肤%
|
|
/// </summary>
|
|
public string SkinCarePercent { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务业绩%
|
|
/// </summary>
|
|
public string ServicePerformancePercent { get; set; }
|
|
|
|
/// <summary>
|
|
/// 其他业绩%
|
|
/// </summary>
|
|
public string OtherPerformancePercent { get; set; }
|
|
}
|
|
}
|