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.
50 lines
1.1 KiB
C#
50 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
public class MSKAPISearchCommodityResultDto
|
|
{
|
|
/// <summary>
|
|
/// 回执代码
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 回执消息
|
|
/// </summary>
|
|
public string msg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商品列表
|
|
/// </summary>
|
|
public List<MSKAPISearchCommodityResultDataDto> data { get; set; }
|
|
}
|
|
|
|
public class MSKAPISearchCommodityResultDataDto
|
|
{
|
|
/// <summary>
|
|
/// 商品名称
|
|
/// </summary>
|
|
public string commodityName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商品代码
|
|
/// </summary>
|
|
public string commodityCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货物品类
|
|
/// </summary>
|
|
public string[] cargoTypes { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public bool hasUSFlag { get; set; }
|
|
}
|
|
}
|