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.
31 lines
637 B
C#
31 lines
637 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 商品检索结果
|
|
/// </summary>
|
|
public class SearchCommodityResultDto
|
|
{
|
|
/// <summary>
|
|
/// 商品名称
|
|
/// </summary>
|
|
public string commodityName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商品代码
|
|
/// </summary>
|
|
public string commodityCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货物品类
|
|
/// </summary>
|
|
public string[] cargoTypes { get; set; }
|
|
|
|
}
|
|
}
|