/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using CoreCms.Net.Model.ViewModels.UI;
using SqlSugar;
namespace CoreCms.Net.Model.Entities
{
///
/// 商品分类
///
public partial class CoreCmsGoodsCategory
{
///
/// 类别名称
///
[Display(Name = "类别名称")]
[SugarColumn(IsIgnore = true)]
public string typeName { get; set; }
///
/// 子树
///
[SqlSugar.SugarColumn(IsIgnore = true)]
public List children { get; set; }
}
}