Files
tnb.server/system/Tnb.Systems.Entitys/Entity/System/CommonWordsEntity.cs
2024-04-23 10:16:16 +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 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; }
}