using Microsoft.EntityFrameworkCore; 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; namespace Admin.NET.Core { /// /// 打包表 /// [Table("les_packwarehouse")] [Comment("打包表")] public class LesPackWarehouse : DEntityBase { /// /// 标签码 /// [Comment("标签码")] [MaxLength(50)] public string PackCode { get; set; } /// /// 物料码 /// [Comment("物料码")] [MaxLength(50)] public string MaterialNo { get; set; } /// /// 长 /// [Comment("长")] [Required] public int Long { get; set; } /// /// 宽 /// [Comment("宽")] [Required] public int Wide { get; set; } /// /// 高 /// [Comment("高")] [Required] public int High { get; set; } /// /// 出库口 /// [Comment("出库口")] [MaxLength(50)] public string OutputEntrance { get; set; } /// /// 打包状态 /// [Comment("打包状态")] public LesPackState LesPackState { get; set; } /// /// 单据号 /// [Comment("单据号")] public string OrderNo { get; set; } } }