39 lines
685 B
C#
39 lines
685 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 ItemQtiyUnitPriceResp
|
|
{
|
|
/// <summary>
|
|
/// 数量
|
|
/// </summary>
|
|
public int TotalQty
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 商品的SKUID
|
|
/// </summary>
|
|
public string SkuId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 单价
|
|
/// </summary>
|
|
public decimal UnitPrice
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|