using JNPF.Common.Const; using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.Extend.Entitys; /// /// 产品分类. /// [SugarTable("ext_productclassify")] [Tenant(ClaimConst.TENANTID)] public class ProductClassifyEntity : CLDEntityBase { /// /// 主键. /// [SugarColumn(ColumnName = "F_Id", IsPrimaryKey = true)] public string Id { get; set; } /// /// 上级. /// [SugarColumn(ColumnName = "F_PARENTID")] public string ParentId { get; set; } /// /// 名称. /// [SugarColumn(ColumnName = "F_FULLNAME")] public string FullName { get; set; } }