You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
505 B
C#
22 lines
505 B
C#
namespace TradeManageNew.Models.Shage
|
|
{
|
|
public class GetOrderUsedSalePlatformDto
|
|
{
|
|
/// <summary>
|
|
/// 产品编码
|
|
/// </summary>
|
|
public string ProductCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产品描述
|
|
/// </summary>
|
|
public string ProductDescription { get; set; }
|
|
|
|
public int SkuId { get; set; }
|
|
|
|
/// <summary>
|
|
/// sku编码
|
|
/// </summary>
|
|
public string SkuCode { get; set; }
|
|
}
|
|
} |