using JNPF.DependencyInjection;
namespace JNPF.Extend.Entitys.Dto.TableExample;
///
/// 获取表格数据列表(带分页).
///
[SuppressSniffer]
public class TableExampleListOutput
{
///
/// 主键id.
///
public string? id { get; set; }
///
/// 项目名称.
///
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? registrant { get; set; }
///
/// 登记时间.
///
public DateTime? registerDate { get; set; }
///
/// 备注.
///
public string? description { get; set; }
///
/// 批注.
///
public string? postilJson { get; set; }
///
/// 标志.
///
public string? sign { get; set; }
///
/// 批注条数.
///
public string? postilCount { get; set; }
}