using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Financial { /// /// 收款退还 /// [SugarTable("Fin_PaymentRefundAndOtherMoney")] public class Fin_PaymentRefundAndOtherMoney : EntityBase { /// /// 团组id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int DiId { get; set; } /// /// 费用名称 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(125)")] public string? PriceName { get; set; } /// /// 费用金额 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal Price { get; set; } /// /// 费用币种 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int CurrencyId { get; set; } /// /// 付款类型??? /// 0 其他 1 退多付款 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int PayType { get; set; } /// /// 退款表识 /// 0 未退 1 已退 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int PriceType { get; set; } } }