using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace OpenAuth.Repository.Domain
{
///
/// 日 期:2024.09.19
/// 描 述:专题
///
[SugarTable("subject")]
public class Subject
{
///
/// 列主键
///
///
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
///
/// 名称
///
///
public string Name { get; set; }
///
/// Key
///
///
public string Key { get; set; }
///
/// 父级id
///
///
public string PId { get; set; }
///
/// 是否自动生成流程
///
///
public bool IsAutoProcess { get; set; }
}
}