namespace Atomx.Admin.Client.Models
{
public class ProductAttributeModel
{
///
/// 属性ID
///
public long Id { get; set; }
///
/// 上级属性,用于规格属性做分组
///
public long ParentId { get; set; }
///
/// 分类ID
///
public long CategoryId { get; set; }
///
/// 属性名称
///
public string Name { get; set; } = string.Empty;
///
/// 属性控件类型,1选项,0文本
///
public int ControlType { get; set; }
///
/// 必须填写重量
///
public bool WeightIsRequired { get; set; }
///
/// 是否是必须的属性
///
public bool IsRequired { get; set; }
///
/// 展示排序
///
public int DisplayOrder { get; set; }
///
/// 数据状态
///
public int Status { get; set; }
}
}