Infrastructure/OpenAuth.Repository/Domain/Subject.cs

43 lines
1020 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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