xcx_temp_api/Infrastructure/Kuaidi100/Common/Request/Cloud/ParcelsBillsParam.cs
2023-10-20 21:58:42 +08:00

37 lines
1.0 KiB
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 Newtonsoft.Json;
using System.Collections.Generic;
namespace Common.Request.cloud
{
public class ParcelsBillsParam<T> {
/// <summary>
/// 打印设备,通过打印机输出的设备码进行获取
/// </summary>
public string siid {get; set;}
/// <summary>
/// 通过管理后台的打印发货单模板配置信息获取
/// </summary>
public string tempid {get; set;}
/// <summary>
/// 设备码
/// </summary>
public List<T> tb0 {get; set;}
/// <summary>
/// 设备码
/// </summary>
public ImageInfo img0 {get; set;}
/// <summary>
/// 打印状态回调地址默认仅支持http
/// </summary>
public string callBackUrl {get; set;}
public override string ToString()
{
return JsonConvert.SerializeObject(this,Formatting.Indented,new JsonSerializerSettings(){NullValueHandling = NullValueHandling.Ignore});
}
}
}