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

56 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;
namespace APT.BaseData.Domain.Entities
{
[APT.Infrastructure.Api.RootOrg]
[IgnoreT4] public partial class T_PF_QUERY_APP : MesEntityBase
{
/// <summary>
/// App查询
/// </summary>
public T_PF_QUERY_APP()
{
IS_DEFAULT_QUERY = true;
IS_DEFAULT_SHOW = true;
}
/// <summary>
/// 字段名称
/// </summary>
public string QUERY_NAME { get; set; }
/// <summary>
/// 显示名称
/// </summary>
public string LABEL { get; set; }
/// <summary>
/// 页面名称URL路径/Production/WorkOrder/DispatchStaff
/// </summary>
public string PAGE_NAME { get; set; }
/// <summary>
/// 数据类型
/// </summary>
public int DATA_TYPE { get; set; }
/// <summary>
/// 是否默认查询字段
/// </summary>
public bool IS_DEFAULT_QUERY { get; set; }
/// <summary>
/// 是否默认显示字段
/// </summary>
public bool IS_DEFAULT_SHOW { get; set; }
/// <summary>
/// 条件默认值
/// </summary>
public string OP_DEFAULT { get; set; }
/// <summary>
/// 数值范围
/// </summary>
public string DATA_VALUE { get; set; }
/// <summary>
/// 顺序
/// </summary>
public int NUM { get; set; }
}
}