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

44 lines
1.1 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.ComponentModel;
namespace APT.BaseData.Domain.Entities.FM
{
[Description("信息表")]
/// <summary>
/// 信息表(工作台)
/// </summary>
[Redis("ID")]
[IgnoreT4]public class T_FM_INFO : MesEntityBase
{
[Description("名称")]
[AcronymField("NAME_ACRONYM")]
public string NAME { get; set; }
/// <summary>
/// 名称首字母缩写
/// </summary>
[Description("名称首字母缩写")]
public string NAME_ACRONYM { get; set; }
[Description("信息")]
public string INFO { get; set; }
/// <summary>
///API信息; 多个用逗号分隔
/// </summary>
[Description("API信息")]
public string API { get; set; }
/// <summary>
/// 多个用逗号分隔如Keyword:1234;Paramter1:1123,Keyword:{user};Paramter2:{date}
/// </summary>
[Description("参数")]
public string PARAMS { get; set; }
}
}