using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.ViewModels.Groups { /// /// 团组增减款项返回视图 /// public class DecreasePaymentsView { public int Id { get; set; } /// /// 团组外键编号 /// public int DiId { get; set; } /// /// 费用名称 /// public string PriceName { get; set; } /// /// 费用金额 /// public decimal Price { get; set; } /// /// 费用币种 /// public string Currency { get; set; } /// /// 附件地址 /// public string FilePath { get; set; } public string CreateUserName { get; set; } public DateTime CreateTime { get; set; } public int isAudit { get; set; } public int IsPay { get; set; } } }