39 lines
694 B
C#
39 lines
694 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Domain.Message.Response.BaoDian
|
|
{
|
|
public class OrderPlanPackageSkuResp
|
|
{
|
|
/// <summary>
|
|
/// 原始套餐id
|
|
/// </summary>
|
|
public long SourcePackageId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// SKUID
|
|
/// </summary>
|
|
public string SkuId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 剩余数量
|
|
/// </summary>
|
|
public int LeftQty
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|