namespace Atomx.Admin.Client.Models { public class ProductAttributeOptionModel { /// /// 预设值ID /// public long Id { get; set; } /// /// 供应商自定义值 /// public long VendorId { get; set; } /// /// 产品属性ID /// public long AttributeId { get; set; } /// /// 预设值名称 /// public string Value { get; set; } = string.Empty; /// /// 展示排序 /// public int DisplayOrder { get; set; } /// /// 是否通用的 /// public bool Standard { get; set; } /// /// 数据状态 /// public int Status { get; set; } } }