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 { public class Dt_WarehouseType:BaseEntity { [SugarColumn(IsPrimaryKey = true, IsIdentity = true,ColumnDescription ="主键")] public int Id { get; set; } //库房代码 001 002 [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "库房代码")] public string WarehouseCode { get; set; } //库房名称 [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "库房名称")] public string WarehouseName { get; set; } } }