添加项目文件。

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,123 @@
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineCrInput
{
/// <summary>
/// 流程名称.
/// </summary>
public string? fullName { get; set; }
/// <summary>
/// 流程编号.
/// </summary>
public string? enCode { get; set; }
/// <summary>
/// 排序码.
/// </summary>
public long? sortCode { get; set; }
/// <summary>
/// 表单类型.
/// </summary>
public int? formType { get; set; }
/// <summary>
/// 流程分类(数据字典-工作流-流程分类).
/// </summary>
public string? category { get; set; }
/// <summary>
/// 流程类型0发起流程1功能流程.
/// </summary>
public int? type { get; set; }
/// <summary>
/// 图标.
/// </summary>
public string? icon { get; set; }
/// <summary>
/// 图标背景.
/// </summary>
public string? iconBackground { get; set; }
/// <summary>
/// 说明.
/// </summary>
public string? description { get; set; }
/// <summary>
/// 状态(0-未发布1-已发布).
/// </summary>
public int? enabledMark { get; set; }
/// <summary>
/// 表单JSON包.
/// </summary>
public string? formData { get; set; }
/// <summary>
/// 流程JOSN包.
/// </summary>
public string? flowTemplateJson { get; set; }
/// <summary>
/// 表信息数据.
/// </summary>
public string? tables { get; set; }
/// <summary>
/// 数据库连接id.
/// </summary>
public string? dbLinkId { get; set; }
/// <summary>
/// app地址.
/// </summary>
public string? appFormUrl { get; set; }
/// <summary>
/// 表单地址.
/// </summary>
public string? formUrl { get; set; }
/// <summary>
/// 表单json草稿.
/// </summary>
public string draftJson { get; set; }
/// <summary>
/// 流程类型.
/// </summary>
public int flowType { get; set; }
/// <summary>
/// 接口路径.
/// </summary>
public string interfaceUrl { get; set; }
/// <summary>
/// 关联的表.
/// </summary>
public string? tableJson { get; set; }
/// <summary>
/// 表单模型.
/// </summary>
public string? propertyJson { get; set; }
/// <summary>
/// Web地址.
/// </summary>
public string urlAddress { get; set; }
/// <summary>
/// APP地址.
/// </summary>
public string appUrlAddress { get; set; }
}

View File

@@ -0,0 +1,17 @@
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineFieldOutput
{
/// <summary>
/// 字段.
/// </summary>
public string vmodel { get; set; }
/// <summary>
/// 字段说明.
/// </summary>
public string label { get; set; }
}

View File

@@ -0,0 +1,19 @@
using JNPF.DependencyInjection;
using JNPF.WorkFlow.Entitys.Entity;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineImportInput
{
/// <summary>
/// 导入流程.
/// </summary>
public FlowEngineEntity? flowEngine { get; set; }
/// <summary>
/// 导入流程权限.
/// </summary>
public List<FlowEngineVisibleEntity> visibleList { get; set; } = new List<FlowEngineVisibleEntity>();
}

View File

@@ -0,0 +1,18 @@
using JNPF.DependencyInjection;
using JNPF.WorkFlow.Entitys.Entity;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineImportOutput
{
/// <summary>
/// 流程实例.
/// </summary>
public FlowEngineEntity flowEngine { get; set; }
/// <summary>
/// 流程可见范围.
/// </summary>
public List<FlowEngineVisibleEntity> visibleList { get; set; } = new List<FlowEngineVisibleEntity>();
}

View File

@@ -0,0 +1,103 @@
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineInfoOutput
{
/// <summary>
/// 主键id.
/// </summary>
public string? id { get; set; }
/// <summary>
/// 流程名称.
/// </summary>
public string? fullName { get; set; }
/// <summary>
/// 流程编号.
/// </summary>
public string? enCode { get; set; }
/// <summary>
/// 排序码.
/// </summary>
public long? sortCode { get; set; }
/// <summary>
/// 表单类型(数据字典-流程表单类型).
/// </summary>
public int? formType { get; set; }
/// <summary>
/// 流程分类(数据字典-工作流-流程分类).
/// </summary>
public string? category { get; set; }
/// <summary>
/// 流程类型(数据字典-工作流-流程类型).
/// </summary>
public int? type { get; set; }
/// <summary>
/// 图标.
/// </summary>
public string? icon { get; set; }
/// <summary>
/// 图标背景.
/// </summary>
public string? iconBackground { get; set; }
/// <summary>
/// 说明.
/// </summary>
public string? description { get; set; }
/// <summary>
/// 状态(0-关闭1-开启).
/// </summary>
public int? enabledMark { get; set; }
/// <summary>
/// 表单JSON包.
/// </summary>
public string? formData { get; set; }
/// <summary>
/// 流程JOSN包.
/// </summary>
public string? flowTemplateJson { get; set; }
/// <summary>
/// 关联表信息.
/// </summary>
public string? tables { get; set; }
/// <summary>
/// 版本.
/// </summary>
public string? version { get; set; }
/// <summary>
/// 版本类型.
/// </summary>
public string? visibleType { get; set; }
/// <summary>
/// 数据库连接id.
/// </summary>
public string? dbLinkId { get; set; } = "0";
/// <summary>
/// app链接.
/// </summary>
public string? appFormUrl { get; set; }
/// <summary>
/// pc链接.
/// </summary>
public string? formUrl { get; set; }
}

View File

@@ -0,0 +1,98 @@
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineListAllOutput
{
/// <summary>
/// id.
/// </summary>
public string? id { get; set; }
/// <summary>
/// 流程编号.
/// </summary>
public string? enCode { get; set; }
/// <summary>
/// 流程名称.
/// </summary>
public string? fullName { get; set; }
/// <summary>
/// 流程类型(数据字典-工作流-流程类型).
/// </summary>
public int? type { get; set; }
/// <summary>
/// 流程分类(数据字典-工作流-流程分类).
/// </summary>
public string? category { get; set; }
/// <summary>
/// 表单类型(数据字典-流程表单类型).
/// </summary>
public int? formType { get; set; }
/// <summary>
/// 表单JSON包.
/// </summary>
public string? formData { get; set; }
/// <summary>
/// 版本类型.
/// </summary>
public int? visibleType { get; set; }
/// <summary>
/// 图标.
/// </summary>
public string? icon { get; set; }
/// <summary>
/// 图标背景.
/// </summary>
public string? iconBackground { get; set; }
/// <summary>
/// 流程JOSN包.
/// </summary>
public string? flowTemplateJson { 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>
/// 说明.
/// </summary>
public string? description { get; set; }
/// <summary>
/// 标识.
/// </summary>
public int? enabledMark { get; set; }
/// <summary>
/// 排序码.
/// </summary>
public long? sortCode { get; set; }
}

View File

@@ -0,0 +1,19 @@
using JNPF.Common.Filter;
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineListInput : PageInputBase
{
/// <summary>
/// 分类.
/// </summary>
public string? category { get; set; }
/// <summary>
/// 流程类型.
/// </summary>
public int flowType { get; set; }
}

View File

@@ -0,0 +1,95 @@
using JNPF.Common.Security;
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineListOutput : TreeModel
{
/// <summary>
/// 流程名称.
/// </summary>
public string? fullName { get; set; }
/// <summary>
/// 流程编号.
/// </summary>
public string? enCode { get; set; }
/// <summary>
/// 排序码.
/// </summary>
public long? sortCode { get; set; }
/// <summary>
/// 表单类型(数据字典-流程表单类型).
/// </summary>
public int? formType { 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>
/// 说明.
/// </summary>
public string? description { get; set; }
/// <summary>
/// 状态(0-关闭1-开启).
/// </summary>
public int? enabledMark { get; set; }
/// <summary>
/// 流程分类(数据字典-工作流-流程分类).
/// </summary>
public string? category { get; set; }
/// <summary>
/// 流程JOSN包.
/// </summary>
public string? flowTemplateJson { get; set; }
/// <summary>
/// 表单JSON包.
/// </summary>
public string? formData { get; set; }
/// <summary>
/// 图标.
/// </summary>
public string? icon { get; set; }
/// <summary>
/// 图标背景.
/// </summary>
public string? iconBackground { get; set; }
/// <summary>
/// 流程类型(数据字典-工作流-流程类型).
/// </summary>
public int? type { get; set; }
/// <summary>
/// 版本类型.
/// </summary>
public int? visibleType { get; set; }
}

View File

@@ -0,0 +1,18 @@
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineListSelectOutput
{
/// <summary>
/// id.
/// </summary>
public string? id { get; set; }
/// <summary>
/// 流程名称.
/// </summary>
public string? fullName { get; set; }
}

View File

@@ -0,0 +1,12 @@
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineUpInput : FlowEngineCrInput
{
/// <summary>
/// id.
/// </summary>
public string? id { get; set; }
}