添加项目文件。
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using Atomx.Common.Entities;
|
||||
|
||||
namespace Atomx.Admin.Client.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// 产品SKU库存量模型
|
||||
/// </summary>
|
||||
public class ProductStockUnitModel : ProductAttributeCombination
|
||||
{
|
||||
/// <summary>
|
||||
/// 产品名称
|
||||
/// </summary>
|
||||
public string Title { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 封面图片
|
||||
/// </summary>
|
||||
public string? Image { get; set; } = string.Empty;
|
||||
|
||||
public List<ProductSkuModel> Sku { get; set; } = new();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user