添加项目文件。

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,28 @@
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowComment;
[SuppressSniffer]
public class FlowCommentCrInput
{
/// <summary>
/// 附件.
/// </summary>
public string? file { get; set; }
/// <summary>
/// 图片.
/// </summary>
public string? image { get; set; }
/// <summary>
/// 任务id.
/// </summary>
public string? taskId { get; set; }
/// <summary>
/// 评论内容.
/// </summary>
public string? text { get; set; }
}

View File

@@ -0,0 +1,53 @@
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowComment;
[SuppressSniffer]
public class FlowCommentInfoOutput
{
/// <summary>
/// 描述.
/// </summary>
public string? description { get; set; }
/// <summary>
/// 结束时间.
/// </summary>
public DateTime? endTime { get; set; }
/// <summary>
/// 流程分类.
/// </summary>
public string? flowCategory { get; set; }
/// <summary>
/// 流程id.
/// </summary>
public string? flowId { get; set; }
/// <summary>
/// 流程名称.
/// </summary>
public string? flowName { get; set; }
/// <summary>
/// 主键id.
/// </summary>
public string? id { get; set; }
/// <summary>
/// 开始时间.
/// </summary>
public DateTime? startTime { get; set; }
/// <summary>
/// 评论人.
/// </summary>
public string? toUserName { get; set; }
/// <summary>
/// 评论人id.
/// </summary>
public string? toUserId { get; set; }
}

View File

@@ -0,0 +1,63 @@
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowComment;
[SuppressSniffer]
public class FlowCommentListOutput
{
/// <summary>
/// 创建时间.
/// </summary>
public DateTime? creatorTime { get; set; }
/// <summary>
/// 创建用户.
/// </summary>
public string? creatorUserId { get; set; }
/// <summary>
/// 创建用户名.
/// </summary>
public string? creatorUser { get; set; }
/// <summary>
/// 创建用户头像.
/// </summary>
public string? creatorUserHeadIcon { get; set; }
/// <summary>
/// 文本.
/// </summary>
public string? text { get; set; }
/// <summary>
/// 图片.
/// </summary>
public string? image { get; set; }
/// <summary>
/// 附件.
/// </summary>
public string? file { get; set; }
/// <summary>
/// 任务id.
/// </summary>
public string? taskId { get; set; }
/// <summary>
/// 自然主键.
/// </summary>
public string? id { get; set; }
/// <summary>
/// 是否删除.
/// </summary>
public bool isDel { get; set; }
/// <summary>
/// 修改时间.
/// </summary>
public DateTime? lastModifyTime { get; set; }
}

View File

@@ -0,0 +1,14 @@
using JNPF.Common.Filter;
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowComment;
[SuppressSniffer]
public class FlowCommentListQuery : PageInputBase
{
/// <summary>
/// 任务id.
/// </summary>
public string? taskId { get; set; }
}

View File

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