using JNPF.Common.Security; using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.PrintDev; /// /// 打印模板列表输出. /// [SuppressSniffer] public class PrintDevListOutput : TreeModel { /// /// 名称. /// public string fullName { get; set; } /// /// 编号. /// public string enCode { get; set; } /// /// 创建人. /// public string creatorUser { get; set; } /// /// 创建时间. /// public DateTime? creatorTime { get; set; } /// /// 修改人. /// public string lastModifyUser { get; set; } /// /// 修改时间. /// public DateTime? lastModifyTime { get; set; } /// /// 状态(0-关闭,1-开启). /// public int? enabledMark { get; set; } /// /// 流程分类(数据字典-工作流-流程分类). /// public string category { get; set; } /// /// 流程分类(数据字典-工作流-流程分类). /// public long? sortCode { get; set; } /// /// 类型. /// public int? type { get; set; } }