using DapperORMCore.Model.CoreModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NXWMS.Model.AppModels.Condition.Base { public class WarehouseCondition : OperationInfo { public int WarehouseId { get; set; } /// /// NewId主键 /// /// /// 仓库编码 /// public string WarehouseCode { get; set; } /// /// 仓库名称 /// public string WarehouseName { get; set; } } }