using Myshipping.Core.Entity; using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application.Entity { /// /// /// [SugarTable("booking_extendstate")] [Description("扩展状态")] public class BookingExtendState: PrimaryKeyEntity { /// /// 业务id /// public long bookingId { get; set; } /// /// 提箱小票未申请 /// public int noApply { get; set; } /// /// 提箱小票已申请未打印 /// public int applyNoPrint { get; set; } /// /// 提箱小票已打印 /// public int print { get; set; } /// /// 是否封账 /// public bool IsLockBooking { get; set; } } }