using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Financial { /// /// 财务 - 其他款项 /// 雷怡 2023-08-15 15:13 /// [SugarTable("Fin_OtherPrice")] public class Fin_OtherPrice:EntityBase { /// /// 团组Id /// [SugarColumn(IsNullable = true,ColumnDataType = "int")] public int Diid { get; set; } /// /// 费用名称 /// [SugarColumn(IsNullable = true,ColumnDataType = "varchar(100)")] public string? PriceName { get; set; } /// /// 费用金额 /// [SugarColumn(IsNullable = true,ColumnDataType = "decimal(10,2)")] public decimal Price { get; set; } /// /// 币种Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int CurrencyId { get; set; } /// /// 币种汇率 /// [SugarColumn(IsNullable = true,ColumnDataType = "decimal(10,4)")] public decimal DayRate { get; set; } /// /// 付款类型 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int PayType { get; set; } /// /// 退款标识 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int RefundType { get; set; } } }