GroupCostParameterView.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using OASystem.Domain.Entities.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.ViewModels.Groups
  8. {
  9. /// <summary>
  10. /// 团组成本
  11. /// Return View
  12. /// </summary>
  13. public class GroupCostParameterView:Grp_GroupCostParameter
  14. {
  15. }
  16. /// <summary>
  17. /// 团组成本 模块提示 return View
  18. /// </summary>
  19. public class GroupCostModulePromptView
  20. {
  21. public string CurrencyCode { get; set; }
  22. public decimal Rate { get; set; }
  23. public List<GroupCostModulePromptInfo> ModulePromptInfos { get; set; }
  24. }
  25. public class GroupCostModulePromptInfo
  26. {
  27. /// <summary>
  28. /// 分段成本 A B
  29. /// </summary>
  30. public string CostType { get; set; }
  31. public string CostTypeStartTime { get; set; }
  32. public string CostTypeEndTime { get; set; }
  33. public int CostTypeNumber { get; set; }
  34. public object Data { get; set; }
  35. }
  36. }