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.

38 lines
1.2 KiB
C#

7 months ago
using DS.Module.Core.Data;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Entity
{
/// <summary>
/// 订舱链接
/// </summary>
[SqlSugar.SugarTable("op_booking_order_url", "订舱链接")]
public class BookingOrderUrl : BaseModel<long>
{
/// <summary>
/// 业务ID
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "业务id", IsNullable = false)]
public long? BusinessId { get; set; }
/// <summary>
/// 提箱小票链接
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "提箱小票链接", IsNullable = true, Length = 500)]
public string UrlTxxp { get; set; }
/// <summary>
/// VGM链接
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "VGM链接", IsNullable = true, Length = 500)]
public string UrlVgm { get; set; }
/// <summary>
/// VGM SI链接
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "VGM SI链接", IsNullable = true, Length = 500)]
public string UrlVgmSi { get; set; }
}
}