using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Admin.NET.Core { /// /// 库口表 /// [Table("les_entrance")] [Comment("库口表")] public class LesEntrance : DEntityBase { /// /// 库区Id /// [Comment("库区Id")] public long AreaId { get; set; } /// /// 库口名称 /// [Comment("库口名称")] [MaxLength(50)] public string Name { get; set; } /// /// 库口编码 /// [Comment("库口编码")] [MaxLength(50)] public string Code { get; set; } /// /// 库口类型 /// [Comment("库口类型")] public LesEntranceType EntranceType { get; set; } /// /// 库口状态 /// [Comment("库口状态")] public CommonStatus CommenStatus { get; set; } /// /// 库区表 /// public WmsArea WmsArea { get; set; } } }