39 lines
687 B
C#
39 lines
687 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 MatchPlanQtyResp
|
|
{
|
|
/// <summary>
|
|
/// 匹配数量
|
|
/// </summary>
|
|
public int Qty
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 金额
|
|
/// </summary>
|
|
public decimal Amount
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// SKU
|
|
/// </summary>
|
|
public List<ItemQtiyUnitPriceResp> Sku
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|