34 lines
806 B
C#
34 lines
806 B
C#
|
|
using MyCode.Project.Domain.Message.Response.BaoDian;
|
|||
|
|
using MyCode.Project.Domain.Model;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace MyCode.Project.Domain.Message.Act.BaoDian
|
|||
|
|
{
|
|||
|
|
public class NewMemberSalesScheduleAct
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 主键id
|
|||
|
|
/// </summary>
|
|||
|
|
public long Id { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 套餐名称
|
|||
|
|
/// </summary>
|
|||
|
|
public string PackageName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 商品明细列表
|
|||
|
|
/// </summary>
|
|||
|
|
public List<SkuResp> SkuList { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 服务明细列表
|
|||
|
|
/// </summary>
|
|||
|
|
public List<ServiceResp> ServiceList { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|