Files
YunTongJackYunTask/Reportapi/MyCode.Project.Domain/Message/Response/BaoDian/MatchPlanQtyResp.cs
2025-07-04 09:50:02 +08:00

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;
}
}
}