添加项目文件。

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,45 @@
using JNPF.DependencyInjection;
namespace JNPF.Extend.Entitys.Dto.Order;
/// <summary>
/// 获取订单列表-收款计划.
/// </summary>
[SuppressSniffer]
public class OrderCollectionPlanOutput
{
/// <summary>
/// 主键id.
/// </summary>
public string? id { get; set; }
/// <summary>
/// 收款日期.
/// </summary>
public DateTime? receivableDate { get; set; }
/// <summary>
/// 收款比率.
/// </summary>
public decimal? receivableRate { get; set; }
/// <summary>
/// 收款金额.
/// </summary>
public string? receivableMoney { get; set; }
/// <summary>
/// 收款方式.
/// </summary>
public string? receivableMode { get; set; }
/// <summary>
/// 备注.
/// </summary>
public string? description { get; set; }
/// <summary>
/// 收款摘要.
/// </summary>
public string? fabstract { get; set; }
}