using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Dtos.Groups { /// /// 团组增减款项Dto /// public class DecreasePaymentsDto { public int UserId { get; set; } public int CTId { get; set; } } public class DecreasePaymentsListDto { public int DiId { get; set; } } /// /// 团组增减款项操作 /// public class DecreasePaymentsOpDto { /// /// 操作状态 /// 1 添加 /// 2 修改 /// public int Status { get; set; } /// /// 支付方式 /// public int PayDId { get; set; } /// /// 费用表示 /// public int OrbitalPrivateTransfer { get; set; } /// /// 收款方 /// public string Payee { get;set; } /// /// 编号 /// public int Id { get; set; } /// /// 团组外键编号 /// public int DiId { get; set; } /// /// 费用名称 /// public string PriceName { get; set; } /// /// 费用金额 /// public decimal Price { get; set; } /// /// 费用币种 /// public int Currency { get; set; } /// /// 附件地址 /// public string FilePath { get; set; } /// /// 创建者Id /// public int CreateUserId { get; set; } /// /// 备注 /// public string Remark { get; set; } } public class DecreasePaymentsByIdDto { public int Id { get; set; } } public class DelFileDto { public string fileName { get; set; } public int Id { get; set; } } }