using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Dtos.Financial
{
///
/// 收款退还与其他款项
///
public class PaymentRefundAndOtherMoneyItemByDiIdDto:PortDtoBase
{
///
/// 团组Id
///
public int DiId { get; set; }
}
///
/// 收款退还与其他款项
///
public class PaymentRefundAndOtherMoneyDelDto
{
///
/// Id
///
public int Id { get; set; }
///
/// 用户Id
///
public int UserId { get; set; }
}
}