using JNPF.DependencyInjection; using JNPF.Systems.Entitys.Model.PrintDev; namespace JNPF.Systems.Entitys.Dto.PrintDev; /// /// 打印模板配置数据输出. /// [SuppressSniffer] public class PrintDevDataOutput { /// /// sql数据. /// public object printData { get; set; } /// /// 模板数据. /// public string printTemplate { get; set; } /// /// 审批数据. /// public List operatorRecordList { get; set; } = new List(); }