You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
612 B
C#
29 lines
612 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Op.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 订单链接地址
|
|
/// </summary>
|
|
public class BookingOrderUrlRes
|
|
{
|
|
|
|
/// <summary>
|
|
/// 提箱小票链接
|
|
/// </summary>
|
|
public string UrlTxxp { get; set; }
|
|
/// <summary>
|
|
/// VGM链接
|
|
/// </summary>
|
|
public string UrlVgm { get; set; }
|
|
/// <summary>
|
|
/// VGM SI链接
|
|
/// </summary>
|
|
public string UrlVgmSi { get; set; }
|
|
}
|
|
}
|