添加项目文件。

This commit is contained in:
2023-03-13 15:00:34 +08:00
parent 42bf06ca3e
commit 1d73df3235
1205 changed files with 185078 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
using System.Text.Json.Serialization;
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; }
}