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

65 lines
1.6 KiB
C#

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 SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.Repository.Domain
{
/// <summary>
/// 日 期2024.03.02
/// 描 述:系统菜单列信息表
/// </summary>
[SugarTable("sys_modulecolumn")]
public class SysModuleColumn
{
#region 实体成员
/// <summary>
/// 列主键
/// </summary>
/// <returns></returns>
[SugarColumn(IsPrimaryKey = true)]
public string ModuleColumnId { get; set; }
/// <summary>
/// 功能主键
/// </summary>
/// <returns></returns>
public string ModuleId { get; set; }
/// <summary>
/// 父级主键
/// </summary>
/// <returns></returns>
public string ParentId { get; set; }
/// <summary>
/// 编码
/// </summary>
/// <returns></returns>
public string Encode { get; set; }
/// <summary>
/// 名称
/// </summary>
/// <returns></returns>
public string FullName { get; set; }
/// <summary>
/// 排序码
/// </summary>
/// <returns></returns>
public int? SortCode { get; set; }
#endregion
#region 多租户
/// <summary>
/// 租户ID
/// </summary>
public string TenantId { get; set; }
/// <summary>
/// 是否租户功能 1是 其它都不是
/// </summary>
public int? IsMain { get; set; }
#endregion
}
}