You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.0 KiB

using FreeSql.DatabaseModel;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Newtonsoft.Json;
using FreeSql.DataAnnotations;
namespace BBWYB.Server.Model.Db.HY
{
[Table(Name = "hycats", DisableSyncStructure = true)]
public partial class HyCats
{
[Column(StringLength = 50, IsPrimary = true, IsNullable = false)]
public string Id { get; set; }
/// <summary>
/// 是否最子级
/// </summary>
[Column(DbType = "tinyint")]
public sbyte IsLeaf { get; set; }
/// <summary>
/// 级别
/// </summary>
[Column(DbType = "int")]
public int Level { get; set; }
/// <summary>
/// 名称
/// </summary>
[Column(IsNullable = false)]
public string Name { get; set; }
/// <summary>
/// 父级ID
/// </summary>
[Column(StringLength = 50)]
public string ParentId { get; set; }
}
}