Files
tnb.server/system/Tnb.Systems.Entitys/Dto/System/CommonWords/CommonWordsInput.cs
2023-05-31 10:19:05 +08:00

41 lines
998 B
C#

namespace JNPF.Systems.Entitys.Dto.System.CommonWords
{
public class CommonWordsInput
{
/// <summary>
/// 自然主键.
/// </summary>
public string id { get; set; }
/// <summary>
/// 应用id.
/// </summary>
public List<string> systemIds { get; set; } = new List<string>();
/// <summary>
/// 应用名称.
/// </summary>
public List<string> systemNames { get; set; } = new List<string>();
/// <summary>
/// 常用语.
/// </summary>
public string commonWordsText { get; set; }
/// <summary>
/// 常用语类型(0:系统,1:个人).
/// </summary>
public int commonWordsType { get; set; }
/// <summary>
/// 排序.
/// </summary>
public long sortCode { get; set; }
/// <summary>
/// 有效标志.
/// </summary>
public int? enabledMark { get; set; }
}
}