/* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *如果数据库字段发生变化,请在代码生器重新生成此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 VOL.Entity.SystemModels; namespace VOL.Entity.DomainModels { [Entity(TableCnName = "仓储车辆信息_入库受理明细",TableName = "OP_WMS_TRUCKDETAIL")] public class OP_WMS_TRUCKDETAIL:BaseEntity { /// /// /// [Key] [Display(Name ="GID")] [Column(TypeName="uniqueidentifier")] [Required(AllowEmptyStrings=false)] public Guid GID { get; set; } /// /// /// [Display(Name ="PID")] [Column(TypeName="uniqueidentifier")] [Required(AllowEmptyStrings=false)] [ParentId("")] public Guid PID { get; set; } /// /// /// [Display(Name ="PARENTTYPE")] [MaxLength(20)] [Column(TypeName="varchar(20)")] public string PARENTTYPE { get; set; } /// /// /// [Display(Name ="TRUCKNO")] [MaxLength(20)] [Column(TypeName="varchar(20)")] public string TRUCKNO { get; set; } /// /// /// [Display(Name ="TRUCKMODEL")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string TRUCKMODEL { get; set; } /// /// /// [Display(Name ="DRIVERNAME")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string DRIVERNAME { get; set; } /// /// /// [Display(Name ="DRIVERTEL")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string DRIVERTEL { get; set; } /// /// /// [Display(Name ="REMARK")] [MaxLength(200)] [Column(TypeName="varchar(200)")] public string REMARK { get; set; } } }