12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using OASystem.Domain.Entities.Groups;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Groups
- {
-
-
-
-
- public class GroupCostParameterView:Grp_GroupCostParameter
- {
- }
-
-
-
- public class GroupCostModulePromptView
- {
- public List<GroupCostModulePromptInfo> ModulePromptInfos { get; set; }
- }
- public class GroupCostModulePromptInfo
- {
- public string CurrencyCode { get; set; }
- public decimal Rate { get; set; }
-
-
-
- public string CostType { get; set; }
- public string CostTypeStartTime { get; set; }
- public string CostTypeEndTime { get; set; }
- public int CostTypeNumber { get; set; }
-
-
-
- public decimal IndividualCost { get; set; }
-
-
-
- public decimal TotalCost { get; set; }
- public object Data { get; set; }
- }
- }
|