d_sms_service/APT.BaseData.Domain/Entities/PF/T_PF_PAGE_CUSTOM.cs
2024-10-28 13:45:58 +08:00

46 lines
1.1 KiB
C#
Raw 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
{
/// <summary>
/// 自定义表单
/// </summary>
[Redis("PAGE_FORM_ID", "PAGE_FORM_ID", "ID", "CODE")]
[APT.Infrastructure.Api.RootOrg]
[IgnoreT4] public class T_PF_PAGE_CUSTOM : MesEntityBase
{
/// <summary>
/// 窗体ID
/// </summary>
public Guid? PAGE_FORM_ID { get; set; }
/// <summary>编码</summary>
public string CODE { get; set; }
/// <summary>
/// 组件名称或者URL
/// 组件用于后台URL用于app或者后台
/// </summary>
public string COMPONENT_NAME { get; set; }
/// <summary>自定义参数 参数名称=参数值 多个参数时以||分割</summary>
public string CUSTOM_PARAMS { get; set; }
/// <summary>
/// 自定义表单接口
/// </summary>
public string CUSTOM_API { get; set; }
/// <summary>
/// 窗体
/// </summary>
public virtual T_PF_FORM Nav_PageForm { get; set; }
[Description("源ID")]
public Guid? SRC_ID { get; set; }
}
}