123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.Groups
- {
- /// <summary>
- /// 团组增减款项Dto
- /// </summary>
- public class DecreasePaymentsDto
- {
- public int UserId { get; set; }
- }
- public class DecreasePaymentsListDto
- {
- public int DiId { get; set; }
- }
- }
|