using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CoreCms.Net.DTO.WeChatShipping { /// /// 发货信息录入接口提交参数 /// public class OrderShippingCreatePost { /// /// 同城配送快递编码 /// public string? cityDistributionName { get; set; } /// /// 同城配送快递单号 /// public string? cityDistributionNumber { get; set; } /// /// 是否全部发货 /// public bool is_all_delivered { get; set; } = false; /// /// 商品信息 /// public string item_desc { get; set; } /// /// 发货类型 /// public int logistics_type { get; set; } /// /// 交易单号 /// public string transaction_id { get; set; } /// /// 物流信息 /// public List? shipping_list { get; set; } /// /// openid /// public string openid { get; set; } /// /// 商户号 /// public string merchant_id { get; set; } /// /// 商家订单编号 /// public string merchant_trade_no { get; set; } } public class ShippingList { /// /// 快递公司名称 /// public string express_company { get; set; } /// /// 快递单号 /// public string tracking_no { get; set; } } }