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.
40 lines
945 B
C#
40 lines
945 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 请求马士基API检索商品名称
|
|
/// </summary>
|
|
public class MSKAPISearchCommodityDto
|
|
{
|
|
/// <summary>
|
|
/// 请求接口账户KEY
|
|
/// </summary>
|
|
public string userKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// 请求接口账户密钥
|
|
/// </summary>
|
|
public string userSecret { get; set; }
|
|
|
|
/// <summary>
|
|
/// 运行环境(TEST, PRODUCTION)
|
|
/// </summary>
|
|
public string operatingEnvironment { get; set; }
|
|
|
|
/// <summary>
|
|
/// 马士基APPKey
|
|
/// </summary>
|
|
public string mskAppKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// 模糊查询商品名称
|
|
/// </summary>
|
|
public string commodityName { get; set; }
|
|
}
|
|
}
|