namespace Atomx.Admin.Client.Models { /// /// 产品属性值模型 /// public class ProductAttributeValueModel { /// /// 数据ID /// public long Id { get; set; } /// /// 产品ID /// public long ProductId { get; set; } /// /// 预设值ID /// public long OptionId { get; set; } /// /// 产品属性关系数据ID /// public long ProductAttributeRelationId { get; set; } /// /// 属性值名称 /// public string Name { get; set; } = string.Empty; /// /// 属性图片 /// public string Image { get; set; } = string.Empty; /// /// 重量 /// public decimal Weight { get; set; } /// /// 重量单位,1克,2千克,3磅,4盎司 /// public int WeightUnit { get; set; } /// /// 是否是加重的 /// public bool IsAddWeight { get; set; } = false; /// /// 展示排序 /// public int DisplayOrder { get; set; } /// /// 是否在编辑 /// public bool IsEdit { get; set; } } }