38 lines
1015 B
C#
38 lines
1015 B
C#
using APT.Infrastructure.Core;
|
|
using APT.Infrastructure.Utility;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using APT.Infrastructure.Api;
|
|
namespace APT.BaseData.Domain.Entities.FM
|
|
{
|
|
/// <summary>
|
|
/// 用户自定义配置
|
|
/// </summary>
|
|
[Redis("USER_ID")]
|
|
[APT.Infrastructure.Api.RootOrg]
|
|
[IgnoreT4]public class T_FM_USER_CUSTOM_CONFIG : MesEntityBase
|
|
{
|
|
/// <summary>用户ID</summary>
|
|
[Description("用户ID")]
|
|
public Guid USER_ID { get; set; }
|
|
|
|
|
|
/// <summary>导航:用户</summary>
|
|
[Description("导航:用户")]
|
|
public virtual T_FM_USER Nav_User { get; set; }
|
|
|
|
|
|
public virtual ICollection<T_FM_USER_CUSTOM_CONFIG_H_TAB> Nav_HiddenTables { get; set; }
|
|
|
|
public virtual ICollection<T_FM_USER_C_C_QUERY> Nav_Querys { get; set; }
|
|
public virtual ICollection<T_FM_USER_C_C_TABLE> Nav_Tabls { get; set; }
|
|
|
|
public virtual ICollection<T_FM_USER_C_C_EDIT> Nav_Edits { get; set; }
|
|
|
|
}
|
|
}
|