mh_jy_safe/APT.BaseData.Domain/Entities/PF/T_PF_TREE_COLUMN.cs
2025-08-25 09:56:57 +08:00

52 lines
1.4 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using APT.Infrastructure.Core;
using APT.Infrastructure.Utility;
using System;
using System.ComponentModel;
namespace APT.BaseData.Domain.Entities
{
[Redis("PAGE_TREE_ID", "ID")]
[APT.Infrastructure.Api.RootOrg]
[IgnoreT4] public partial class T_PF_TREE_COLUMN : MesEntityBase
{
/// <summary>
/// 表ID字段
/// </summary>
public Guid PAGE_TREE_ID { get; set; }
/// <summary>
/// 字段名称表字段可导航属性关联表的字段Nav_Creater.NAME)
/// </summary>
public string FIELD_NAME { get; set; }
/// <summary>
/// 格式化
/// </summary>
public string FORMAT { get; set; }
/// <summary>
/// 查询格式化
/// </summary>
public string QUERY_FORMAT { get; set; }
/// <summary>
/// 级联显示级数
/// </summary>
public int INPUT_DATA_LEVEL { get; set; }
/// <summary>
/// 枚举名称
/// </summary>
public string ENUM { get; set; }
/// <summary>
/// 顺序
/// </summary>
public int NUM { get; set; }
[Description("导航属性:编辑页面")]
/// <summary>
/// 导航属性:树形页面
/// </summary>
public virtual T_PF_PAGE_TREE Nav_PageTree { get; set; }
[Description("源ID")]
public Guid? SRC_ID { get; set; }
}
}