namespace Atomx.Admin.Client.Models
{
public class ProductAddStockModel
{
///
/// 数据ID
///
public long Id { get; set; }
///
/// 产品ID
///
public long ProductId { get; set; }
///
/// 产品标题
///
public string Title { get; set; } = string.Empty;
///
/// 产品属性
///
public List ProductStockAttributes { get; set; } = new();
///
/// SKU信息
///
public ProductAttributeCombinationModel ProductAttributeCombination { get; set; } = new();
///
/// 归属公司ID
///
public long CorporationId { get; set; }
///
/// 仓库ID
///
public string WarehouseId { get; set; } = string.Empty;
///
/// 是否新增属性
///
public bool AddAttribute { get; set; }
///
/// 添加库存
///
public int AddStockQuantity { get; set; }
}
}