This commit is contained in:
2025-07-04 09:50:02 +08:00
commit 3d800dbd11
2564 changed files with 1353015 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.BaoDian
{
public class ClerkResp
{
/// <summary>
/// 关联id(前端忽略)
/// </summary>
public string KeyId { get; set; }
/// <summary>
/// 店员id
/// </summary>
public Guid? ClerkId { get; set; }
/// <summary>
/// 店员名称
/// </summary>
public string ClerkName { get; set; }
/// <summary>
/// 店员手机号
/// </summary>
public string ClerkMobile { get; set; }
/// <summary>
/// 店员计划数
/// </summary>
public decimal ClerkPlanQty { get; set; }
/// <summary>
/// 店员实际达成
/// </summary>
public decimal ClerkCompletedQty { get; set; }
/// <summary>
/// 店员达成率
/// </summary>
public decimal ClerkCompletedRate { get; set; }
/// <summary>
/// 店员达成率(%)
/// </summary>
public string ClerkCompletedPercent { get; set; }
}
}