using Furion.DatabaseAccessor; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace iWare.Wms.Core; /// /// 载具类型管理 /// [Table("wms_container_type")] [Comment("载具类型管理")] public partial class WmsContainerType : DEntityBase { /// /// 类型编码 /// [Comment("类型编码")] public string WareContainerTypeCode { get; set; } /// /// 类型名称 /// [Comment("类型名称")] public string WareContainerTypeName { get; set; } /// /// 长 /// [Comment("长")] public decimal? Length { get; set; } /// /// 高 /// [Comment("高")] public decimal? Height { get; set; } /// /// 宽 /// [Comment("宽")] public decimal? Width { get; set; } /// /// 可入库位类型 /// [Comment("可入库位类型")] public string LocationType { get; set; } /// /// 备注 /// [Comment("备注")] public string Remarks { get; set; } /// /// 状态(字典 0正常 1停用 2删除) /// [Comment("状态")] public CommonStatus? Status { get; set; } = CommonStatus.ENABLE; /// /// 与PLC定义的托盘类型 /// public int? PLCTypeId { get; set; } }