Files
2023-11-06 19:35:59 +08:00

61 lines
1.3 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.Common.Security;
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.PrintDev;
/// <summary>
/// 打印模板列表输出.
/// </summary>
[SuppressSniffer]
public class PrintDevListOutput : TreeModel
{
/// <summary>
/// 名称.
/// </summary>
public string fullName { get; set; }
/// <summary>
/// 编号.
/// </summary>
public string enCode { get; set; }
/// <summary>
/// 创建人.
/// </summary>
public string creatorUser { get; set; }
/// <summary>
/// 创建时间.
/// </summary>
public DateTime? creatorTime { get; set; }
/// <summary>
/// 修改人.
/// </summary>
public string lastModifyUser { get; set; }
/// <summary>
/// 修改时间.
/// </summary>
public DateTime? lastModifyTime { get; set; }
/// <summary>
/// 状态(0-关闭1-开启).
/// </summary>
public int? enabledMark { get; set; }
/// <summary>
/// 流程分类(数据字典-工作流-流程分类).
/// </summary>
public string category { get; set; }
/// <summary>
/// 流程分类(数据字典-工作流-流程分类).
/// </summary>
public long? sortCode { get; set; }
/// <summary>
/// 类型.
/// </summary>
public int? type { get; set; }
}