/* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *如果数据库字段发生变化,请在代码生器重新生成此Model */ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; using VolPro.Entity.SystemModels; namespace VolPro.Entity.DomainModels { [Entity(TableCnName = "车辆出入营区记录",TableName = "warehouse_carentryexitlog",DBServer = "ServiceDbContext")] public partial class warehouse_carentryexitlog:ServiceEntity { /// ///车辆记录ID /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] [Key] [Display(Name ="车辆记录ID")] [Column(TypeName="int")] [Editable(true)] [Required(AllowEmptyStrings=false)] public int Id { get; set; } /// ///车牌号 /// [Display(Name ="车牌号")] [MaxLength(255)] [Column(TypeName="nvarchar(255)")] [Editable(true)] public string CarId { get; set; } /// ///方向(出/入) /// [Display(Name ="方向(出/入)")] [MaxLength(255)] [Column(TypeName="nvarchar(255)")] [Editable(true)] public string Action { get; set; } /// ///时间 /// [Display(Name ="时间")] [Column(TypeName="datetime")] [Editable(true)] public DateTime? CreateDate { get; set; } } }