using DS.Module.Core.Data; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Entity { /// /// 订单扩展状态 /// [SqlSugar.SugarTable("op_booking_extend_state", "订单扩展状态")] public class BookingExtendState : BaseModel { /// /// 业务id /// [SugarColumn(ColumnDescription = "业务id")] public long BusinessId { get; set; } /// /// 提箱小票未申请 /// [SugarColumn(ColumnDescription = "提箱小票未申请", IsNullable = true)] public int noApply { get; set; } /// /// 提箱小票已申请未打印 /// [SugarColumn(ColumnDescription = "提箱小票已申请未打印", IsNullable = true)] public int applyNoPrint { get; set; } /// /// 提箱小票已打印 /// [SugarColumn(ColumnDescription = "提箱小票已打印", IsNullable = true)] public int print { get; set; } /// /// 是否封账 /// [SugarColumn(ColumnDescription = "是否封账", IsNullable = true)] public bool IsLockBooking { get; set; } /// /// 提箱小票有效期起始时间 /// [SugarColumn(ColumnDescription = "提箱小票有效期起始时间", IsNullable = true)] public DateTime? TxxpBeginTime { get; set; } /// /// 提箱小票有效期终止时间 /// [SugarColumn(ColumnDescription = "提箱小票有效期终止时间", IsNullable = true)] public DateTime? TxxpEndTime { get; set; } /// /// 提箱小票pdf地址 /// [SugarColumn(ColumnDescription = "提箱小票pdf地址", Length = 200, IsNullable = true)] public string TxxpPdfUrl { get; set; } } }