using JNPF.DependencyInjection; namespace JNPF.Extend.Entitys.Dto.TableExample; /// /// 新建项目. /// [SuppressSniffer] public class TableExampleCrInput { /// /// 项目名称. /// public string? projectName { get; set; } /// /// 项目编码. /// public string? projectCode { get; set; } /// /// 项目类型. /// public string? projectType { get; set; } /// /// 项目阶段. /// public string? projectPhase { get; set; } /// /// 客户名称. /// public string? customerName { get; set; } /// /// 负责人. /// public string? principal { get; set; } /// /// 立项人. /// public string? jackStands { get; set; } /// /// 交付日期. /// public DateTime? interactionDate { get; set; } /// /// 费用金额. /// public decimal? costAmount { get; set; } /// /// 已用金额. /// public decimal? tunesAmount { get; set; } /// /// 预计收入. /// public decimal? projectedIncome { get; set; } /// /// 描述. /// public string? description { get; set; } }