xcx_temp_api/Infrastructure/Kuaidi100/Common/Request/Electronic/Print/PrintCloudReq.cs
2023-10-20 21:58:42 +08:00

26 lines
603 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.

namespace Common.Request.Electronic.Print
{
public class PrintCloudReq
{
/**
* 业务类型默认getPrintImg
*/
public string method {get; set;}
/**
* 快递100分配给贵司的的授权key
*/
public string key {get; set;}
/**
* 加密签名信息MD5(param+t+key+secret);加密后字符串转大写
*/
public string sign {get; set;}
/**
* 当前请求时间戳
*/
public string t {get; set;}
/**
* 其他参数组合成的json对象
*/
public PrintCloudParam param {get; set;}
}
}