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