using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; namespace Atomx.Admin.Client.Models { public class ManufacturerModel { /// /// 制造商ID /// public long Id { get; set; } /// /// 制造商名称 /// public string Name { get; set; } = string.Empty; /// /// 是否是供应商 /// public bool IsVendor { get; set; } /// /// 品牌LOGO /// public string Logo { get; set; } = string.Empty; /// /// 品牌制造商描述 /// public string Description { get; set; } = string.Empty; /// /// Meta标题 /// public string MetaTitle { get; set; } = string.Empty; /// /// Meta标题 /// public string MetaKeywords { get; set; } = string.Empty; /// /// Meta标题 /// public string MetaDescription { get; set; } = string.Empty; /// /// 是否启用 /// public bool Enabled { get; set; } /// /// 显示排序 /// public int DisplayOrder { get; set; } } }