This commit is contained in:
2025-06-30 19:22:02 +08:00
commit a2e0ca09a6
2663 changed files with 1367889 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using MyCode.Project.Domain.Message.Response.User;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Request.Activity
{
/// <summary>
/// 调度生成海报的参数
/// </summary>
public class GetShopShareCodeRequst
{
/// <summary>
/// 店铺参加活动的主键
/// </summary>
public Guid shopActivityId { get; set; }
/// <summary>
/// 登录信息
/// </summary>
public LoginInfo loginInfo { get; set; }
}
}