using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// 订单链接地址 /// public class BookingOrderUrlRes { /// /// 提箱小票链接 /// public string UrlTxxp { get; set; } /// /// VGM链接 /// public string UrlVgm { get; set; } /// /// VGM SI链接 /// public string UrlVgmSi { get; set; } } }