333
This commit is contained in:
@@ -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; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user