This commit is contained in:
2023-05-31 10:19:05 +08:00
parent 1b65a7a9e5
commit 9c621c75cd
238 changed files with 9905 additions and 4034 deletions

View File

@@ -0,0 +1,45 @@
using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Systems.Entitys.Entity.System;
/// <summary>
/// 常用语
/// 版 本V3.2
/// 版 权引迈信息技术有限公司https://www.jnpfsoft.com
/// 作 者JNPF开发平台组
/// 日 期2021-06-01.
/// </summary>
[SugarTable("BASE_COMMONWORDS")]
public class CommonWordsEntity : CLDEntityBase
{
/// <summary>
/// 应用id.
/// </summary>
[SugarColumn(ColumnName = "F_SYSTEMIDS")]
public string SystemIds { get; set; }
/// <summary>
/// 应用名称.
/// </summary>
[SugarColumn(ColumnName = "F_SYSTEMNAMES")]
public string SystemNames { get; set; }
/// <summary>
/// 常用语.
/// </summary>
[SugarColumn(ColumnName = "F_COMMONWORDSTEXT")]
public string CommonWordsText { get; set; }
/// <summary>
/// 常用语类型(0:系统,1:个人).
/// </summary>
[SugarColumn(ColumnName = "F_COMMONWORDSTYPE")]
public int CommonWordsType { get; set; }
/// <summary>
/// 排序.
/// </summary>
[SugarColumn(ColumnName = "F_SORTCODE")]
public long SortCode { get; set; }
}