using Infrastructure.Domain; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Application.Domain.Entities { public class Category : BaseEntity { [Display(Name = "分类名称")] public string Name { get; set; } [Display(Name = "分类编号")] public string Number { get; set; } [Display(Name = "分类图标")] public string Icon { get; set; } public List Products { get; set; } = new List(); } }