1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- using OASystem.Domain.ViewModels.Financial;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.Financial
- {
-
-
-
- public class TeamRateDto : DtoBase
- {
- }
-
-
-
- public class TeamRateInfoDto : DtoBase
- {
-
-
-
- public int Diid { get; set; }
- }
-
-
-
- public class TeamRateUpdateDto : DtoBase
- {
-
-
-
- public int CreateUserId { get; set; }
-
-
-
- public int DiId { get; set; }
-
-
-
- public List<TeamRateUpdateInfo>? teamRateUpdateInfos { get; set; }
- }
-
-
-
- public class TeamRateUpdateInfo
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int CTable { get; set; }
-
-
-
- public List<TeamRateDescView>? teamRates { get; set; }
- }
-
-
-
- public class GeneralTeamRateInfoDto:PortDtoBase
- {
-
-
-
- public int DiId { get; set; }
-
-
-
-
-
-
-
- public int CTable { get; set; }
- }
- }
|