using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 商品名称检索请求 /// public class QueryCommoditiesDto { /// /// 商品名称 /// public string commodityName { get; set; } /// /// 船公司代码 /// public string carrierId { get; set; } } }