using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Financial { /// /// 财务 - 已收款项 /// 雷怡 2023-08-14 17:07 /// public class Fin_ProceedsReceived:EntityBase { /// /// 团组Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int Diid { get; set; } /// /// 到款时间 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string? SectionTime { get; set; } /// /// 费用 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")] public decimal Price { get; set; } /// /// 币种 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int Currency { get; set; } /// /// 收款类型 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int ReceivablesType { get; set; } /// /// 收款单位 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")] public string? Client { get; set; } /// /// 收款单位 负责人 姓名 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string? CustomerName { get; set; } /// /// 收款单位 负责人 电话 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")] public string? CustomerTel { get; set; } /// /// 应付项id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int FID { get; set; } = 0; } }