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