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