using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Yi.Framework.Model.Models { public class category:baseModel { [Comment("类别名称")] public string name { get; set; } [Comment("排序")] public int sort { get; set; } [Comment("是否父类别")] public int is_parent { get; set; } [Comment("子类别")] public List chidrens { get; set; } [Comment("品牌")] public List brands { get; set; } [Comment("spu")] public List spus { get; set; } [Comment("规格组")] public List spec_Groups { get; set; } [Comment("规格")] public List spec_Params { get; set; } } }