37 lines
820 B
C#
37 lines
820 B
C#
|
|
using APT.Infrastructure.Core;
|
|||
|
|
using APT.Infrastructure.Utility;
|
|||
|
|
using System;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace APT.BaseData.Domain.Entities
|
|||
|
|
{
|
|||
|
|
[IgnoreT4]
|
|||
|
|
[Redis("PARAM_SCHEME_ID", "ID")]
|
|||
|
|
[APT.Infrastructure.Api.RootOrg]
|
|||
|
|
public class T_PF_PARAM_SCHEME_DETAIL : MesEntityBase
|
|||
|
|
{
|
|||
|
|
public Guid PARAM_SCHEME_ID { get; set; }
|
|||
|
|
|
|||
|
|
public Guid PARAM_ITEM_ID { get; set; }
|
|||
|
|
|
|||
|
|
public bool IS_SHOW { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否必填
|
|||
|
|
/// </summary>
|
|||
|
|
public bool REQUIRED { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 允许编辑
|
|||
|
|
/// </summary>
|
|||
|
|
public bool EDITABLE { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
public int NUM { get; set; }
|
|||
|
|
|
|||
|
|
public virtual T_PF_PARAM_SCHEME Nav_ParamScheme { get; set; }
|
|||
|
|
|
|||
|
|
public virtual T_PF_PARAM_ITEM Nav_ParamItem { get; set; }
|
|||
|
|
[Description("源ID")]
|
|||
|
|
public Guid? SRC_ID { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|