1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.Groups
- {
-
-
-
- public class DecreasePaymentsDto
- {
- public int UserId { get; set; }
- public int CTId { get; set; }
- public int PageIndex { get; set; } = 1;
- public int PageSize { get; set; } = 10;
- }
- public class DecreasePaymentsListDto
- {
- public int DiId { get; set; }
- }
-
-
-
- public class DecreasePaymentsOpDto
- {
-
-
-
-
-
- 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; }
-
-
-
- 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; }
- }
- }
|