EnterExitCostQuoteDto.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using OASystem.Domain.ViewModels.Groups;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OASystem.Domain.Dtos.Groups
  8. {
  9. public class EnterExitCostQuoteDto
  10. {
  11. }
  12. public class EnterExitCostQuoteNameListDto : DtoBase
  13. {
  14. /// <summary>
  15. /// 报价名称
  16. /// </summary>
  17. public string Name { get; set; }
  18. }
  19. public class EnterExitCostQuoteGroupNameListDto : DtoBase
  20. {
  21. /// <summary>
  22. /// 团组名称
  23. /// </summary>
  24. public string Name { get; set; }
  25. }
  26. public class EnterExitCostQuoteInfoDto : PortDtoBase
  27. {
  28. public int Id { get; set; }
  29. }
  30. public class EnterExitCostQuoteOpDto : EnterExitCostQuoteInfoView
  31. {
  32. public int CurrUserId { get; set; }
  33. }
  34. public class EnterExitCostQuoteItemDelDto : CurrUserDtoBase
  35. {
  36. public int Id { get; set; }
  37. }
  38. public class EnterExitCostQuoteExcelExportDto : CurrUserDtoBase
  39. {
  40. public int Id { get; set; }
  41. }
  42. }