namespace Atomx.Admin.Client.Models
{
///
/// 产品SKU属性组合模型
///
public class ProductAttributeCombinationModel
{
///
/// 数据ID
///
public long Id { get; set; }
///
/// 产品ID
///
public long ProductId { get; set; }
///
/// 供应制造商ID
///
public long ManufacturerId { get; set; }
///
/// 属性JSON
///
public List SkuAttributes { get; set; } = new List();
///
/// 库存数量
///
public int StockQuantity { get; set; }
///
/// 销售数量
///
public int SalesQuantity { get; set; }
///
/// SKU编码
///
public string SkuNumber { get; set; } = string.Empty;
///
/// 销售加工费
///
public decimal ProcessCharge { get; set; }
///
/// 加工费成本
///
public decimal ProcessCost { get; set; }
///
/// 销售附加费
///
public decimal Surcharge { get; set; }
///
/// 附加费成本
///
public decimal SurchargeCost { get; set; }
///
/// SKU的市场价,划线价
///
public decimal MarketPrice { get; set; }
///
/// SKU的销售价格
///
public decimal Price { get; set; }
///
/// 重量
///
public decimal Weight { get; set; }
///
/// 重量单位,1克,2千克,3磅,4盎司
///
public int WeightUnit { get; set; }
///
/// 是否上架销售
///
public bool Enabled { get; set; }
}
}