添加项目文件。

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,46 @@
using JNPF.Common.Security;
using JNPF.DependencyInjection;
namespace JNPF.Extend.Entitys.Dto.ProjectGantt;
/// <summary>
/// 获取项目任务树形.
/// </summary>
[SuppressSniffer]
public class ProjectGanttTaskTreeViewOutput : TreeModel
{
/// <summary>
/// 结束时间.
/// </summary>
public DateTime? endTime { get; set; }
/// <summary>
/// 开始时间.
/// </summary>
public DateTime? startTime { get; set; }
/// <summary>
/// 项目名称.
/// </summary>
public string? fullName { get; set; }
/// <summary>
/// 完成度.
/// </summary>
public int? schedule { get; set; }
/// <summary>
/// 项目id.
/// </summary>
public string? projectId { get; set; }
/// <summary>
/// 标记颜色.
/// </summary>
public string? signColor { get; set; }
/// <summary>
/// 标记.
/// </summary>
public string? sign { get; set; }
}