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
{
    /// 
    /// 团组成本
    /// Return View
    /// 
    public class GroupCostParameterView:Grp_GroupCostParameter
    {
    }
    /// 
    /// 团组成本 模块提示 return View
    /// 
    public class GroupCostModulePromptView
    {
        public List ModulePromptInfos { get; set; }
    }
    public class GroupCostModulePromptInfo
    {
        public string CurrencyCode { get; set; }
        public decimal Rate { get; set; }
        /// 
        /// 分段成本 A B
        /// 
        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; }
    }
}