using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
namespace Atomx.Admin.Client.Models
{
public class SpecificationAttributeOptionModel
{
///
/// 预设值ID
///
[DatabaseGenerated(DatabaseGeneratedOption.None)]
[Key]
public long Id { get; set; }
///
/// 供应商自定义值
///
public long VendorId { get; set; }
///
/// 产品属性ID
///
public long SpecificationId { get; set; }
///
/// 预设值名称
///
[Column(TypeName = "varchar(50)")]
public string Value { get; set; } = string.Empty;
///
/// 展示排序
///
public int DisplayOrder { get; set; }
///
/// 是否通用的
///
public bool Standard { get; set; }
///
/// 数据状态
///
public int Status { get; set; }
}
}