22 lines
485 B
C#
22 lines
485 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Domain.Message.Request.Service
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 小程序查询服务的适用门店列表
|
|||
|
/// </summary>
|
|||
|
public class AppGetShopPageListQuery
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 所属的加盟商ID 如果为空,则为公司的
|
|||
|
/// </summary>
|
|||
|
public Guid? CustomerID { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|