34 lines
804 B
C#
34 lines
804 B
C#
using MyCode.Project.Infrastructure.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Domain.Message.Request.Message
|
|
{
|
|
public class ProcessMessageReq
|
|
{
|
|
/// <summary>
|
|
/// Desc:店铺ID 加盟商选择查看的店铺ID(店员不用传)
|
|
/// </summary>
|
|
public Guid? ShopID { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 管理层-店长的一天
|
|
/// </summary>
|
|
public class CusMessageReq
|
|
{
|
|
/// <summary>
|
|
/// 店铺ID
|
|
/// </summary>
|
|
public Guid ShopID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 时间范围搜索
|
|
/// </summary>
|
|
public TimeRange SendTime { get; set; }
|
|
}
|
|
}
|