Files
tnb.server/extend/Tnb.Extend.Entitys/Dto/ProjectGantt/ProjectGanttCrInput.cs
2023-03-13 15:00:34 +08:00

56 lines
1.1 KiB
C#
Raw 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.DependencyInjection;
namespace JNPF.Extend.Entitys.Dto.ProjectGantt;
/// <summary>
/// 添加项目.
/// </summary>
[SuppressSniffer]
public class ProjectGanttCrInput
{
/// <summary>
/// 项目编码.
/// </summary>
public string? enCode { get; set; }
/// <summary>
/// 项目状态(1-进行中2-已暂停).
/// </summary>
public int? state { get; set; }
/// <summary>
/// 开始时间.
/// </summary>
public DateTime? startTime { get; set; }
/// <summary>
/// 完成进度.
/// </summary>
public double? schedule { get; set; }
/// <summary>
/// 项目工期.
/// </summary>
public int? timeLimit { get; set; }
/// <summary>
/// 项目名称.
/// </summary>
public string? fullName { get; set; }
/// <summary>
/// 结束时间.
/// </summary>
public DateTime? endTime { get; set; }
/// <summary>
/// 参与人员.
/// </summary>
public string? managerIds { get; set; }
/// <summary>
/// 项目描述.
/// </summary>
public string? description { get; set; }
}