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 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; }
}
}