namespace Atomx.Admin.Client.Models { /// /// 产品SKU库存量搜索模型 /// public class ProductStockUnitSearch : BaseSearch { /// /// 产品ID /// public int Type { get; set; } /// /// 产品名称 /// public string Key { get; set; } = string.Empty; /// /// 重量 /// public decimal Weight { get; set; } } }