PrintHtmlReq.cs 595 B

1234567891011121314151617181920212223242526
  1. namespace Common.Request.Electronic.Html
  2. {
  3. public class PrintHtmlReq
  4. {
  5. /**
  6. * 业务类型(默认:getPrintImg)
  7. */
  8. public string method {get; set;}
  9. /**
  10. * 快递100分配给贵司的的授权key
  11. */
  12. public string key {get; set;}
  13. /**
  14. * 加密签名信息:MD5(param+t+key+secret);加密后字符串转大写
  15. */
  16. public string sign {get; set;}
  17. /**
  18. * 当前请求时间戳
  19. */
  20. public string t {get; set;}
  21. /**
  22. * 其他参数组合成的json对象
  23. */
  24. public PrintHtmlParam param {get; set;}
  25. }
  26. }