This commit is contained in:
2025-04-24 18:31:27 +08:00
commit 9340f5253e
2796 changed files with 1387124 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Request.ReturnVisitLog
{
public class GetReturnVisitLogDetail
{
/// <summary>
/// 营销顾问ID
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// 菜单类型 0=首单会员列表 10=复购会员列表 21=近7天到店新客列表 22=近7天到店老客列表 30=活跃会员列表 40=沉睡会员列表 50=流失会员列表
/// </summary>
public int MenuType { get; set; }
}
public class GetMenuMemberListReq
{
/// <summary>
/// 店铺ID
/// </summary>
public Guid? ShopId { get; set; }
/// <summary>
/// 菜单类型 0=首单会员列表 10=复购会员列表 21=近7天到店新客列表 22=近7天到店老客列表 30=活跃会员列表 40=沉睡会员列表 50=流失会员列表
/// </summary>
public int MenuType { get; set; }
/// <summary>
/// 后端使用的字段
/// </summary>
public Guid? MemberId { get; set; }
}
}