using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// 请求马士基API检索商品名称 /// public class MSKAPISearchCommodityDto { /// /// 请求接口账户KEY /// public string userKey { get; set; } /// /// 请求接口账户密钥 /// public string userSecret { get; set; } /// /// 运行环境(TEST, PRODUCTION) /// public string operatingEnvironment { get; set; } /// /// 马士基APPKey /// public string mskAppKey { get; set; } /// /// 模糊查询商品名称 /// public string commodityName { get; set; } } }