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.Basic { [SugarTable(nameof(Dt_WarehouseArea), "仓库区域信息")] public class Dt_WarehouseArea : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int Id { get; set; } public string Code { get; set; } public string Name { get; set; } public string FactoryArea { get; set; } } }