DecreasePaymentsDto.cs 409 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Dtos.Groups
  7. {
  8. /// <summary>
  9. /// 团组增减款项Dto
  10. /// </summary>
  11. public class DecreasePaymentsDto
  12. {
  13. public int UserId { get; set; }
  14. }
  15. public class DecreasePaymentsListDto
  16. {
  17. public int DiId { get; set; }
  18. }
  19. }