using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.CarModule.Entity; [SugarTable("tb_InternalCar")] public partial class tb_InternalCar:BaseModel { public tb_InternalCar() { } /// /// Desc: /// Default: /// Nullable:False /// public string Owner { get; set; } /// /// Desc: /// Default: /// Nullable:False /// public string PlateNo { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string PhoneNo { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public DateTime? StartTime { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public DateTime? EndTime { get; set; } /// /// Desc: /// Default:0 /// Nullable:True /// public int? Status { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Note { get; set; } }