using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.DB.Models; namespace WIDESEA_Model.Models { /// /// 托盘类型 /// [SugarTable(nameof(Dt_PalletTypeInfo), "托盘类型")] public class Dt_PalletTypeInfo : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int Id { get; set; } /// /// 托盘类型 /// [SugarColumn(IsNullable = false, ColumnDescription = "托盘类型")] public int PalletType { get; set; } /// /// 托盘号起始字符串 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "托盘号起始字符串")] public string CodeStartStr { get; set; } /// /// 托盘类型名称 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "托盘类型名称")] public string TypeName { get; set; } /// /// 长度 /// [SugarColumn(IsNullable = false, ColumnDescription = "长度")] public int Length { get; set; } /// /// 宽度 /// [SugarColumn(IsNullable = false, ColumnDescription = "宽度")] public int Width { get; set; } /// /// 高度 /// [SugarColumn(IsNullable = false, ColumnDescription = "高度")] public int Height { get; set; } /// /// 状态 /// [SugarColumn(IsNullable = false, ColumnDescription = "状态")] public int Enbale { get; set; } /// /// 仓库编号 /// [SugarColumn(IsNullable = false, ColumnDescription = "仓库编号")] public int WarehouseId { get; set; } /// /// 所属层 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "所属层")] public string SortNum { get; set; } /// /// 占用货位数 /// [SugarColumn(IsNullable = false, ColumnDescription = "占用货位数")] public int LocaitonCount { get; set; } /// /// 大托盘是否放奇数列 /// [SugarColumn(IsNullable = false, ColumnDescription = "大托盘是否放奇数列")] public bool IsOdd { get; set; } } }