emoticon_api/Infrastructure/Kuaidi100/Common/Request/QueryTrackReq.cs
2023-10-20 21:58:42 +08:00

20 lines
524 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System ;
namespace Common.Request
{
public class QueryTrackReq
{
/**
* 我方分配给贵司的的公司编号, 点击查看账号信息
*/
public string customer {get; set;}
/**
* 签名, 用于验证身份, 按param + key + customer 的顺序进行MD5加密注意加密后字符串要转大写 不需要“+”号
*/
public string sign {get; set;}
/**
* 其他参数组合成的json对象
*/
public QueryTrackParam param {get; set;}
}
}