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,21 @@
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; }
}
}