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 FeeAuditView
{
}
///
/// GroupCostView
///
public class GroupCostAuditView: Grp_GroupCost
{
#region OP 自动审核相关
public DateTime CurrTime { get; set; }
///
/// 自动审核 - 车费用
///
public decimal CarFee
{
get { return CarCost; }
set { CarCost = value; }
}
///
/// TODO:(没有具体匹配项)自动审核 - 车超时费用
///
public decimal CarOverTimeFee { get; set; }
///
/// 自动审核 - 导游费用
///
public decimal GuideFee
{
get { return TGS; }
set { TGS = value; }
}
///
/// 自动审核 - 导游景点费用
///
public decimal GuideScenicFee {
get { return TGEF; }
set { TGEF = value; }
}
///
/// 自动审核 - 导游小费
///
public decimal GuideTipFee
{
get { return TGTips; }
set { TGTips = value; }
}
///
/// 自动审核 - 导游餐费
///
public decimal GuideMealFee {
get { return TGM; }
set { TGM = value; }
}
///
/// 自动审核 - 导游住宿费
///
public decimal GuideRoomFee { get { return TGA; } set { TGA = value;} }
///
/// 自动审核 - 导游交通费
///
public decimal GuideTrafficFee { get { return TGTF; } set { TGTF = value; } }
///
/// 自动审核 - 导游超时费用
///
public decimal GuideOverTimeFee { get { return TGOF; } set { TGOF = value; } }
///
/// 自动审核 - 司机费用
///
public decimal DriverFee { get { return CFS; } set { CFS = value; } }
///
/// 自动审核 - 司机小费
///
public decimal DriverTipFee { get { return DRVTips; } set { DRVTips = value; } }
///
/// 自动审核 - 司机餐费
///
public decimal DriverMealFee { get { return CFM; } set { CFM = value; } }
///
/// TODO:(没有具体匹配项)自动审核 - 司机超时费用
///
public decimal DriverOverTimeFee { get; set; }
///
/// 自动审核 - 客户早餐
///
public decimal ClientBreakfastFee { get { return B; } set { B = value; } }
///
/// TODO:(没有具体匹配项)自动审核 - 客户早餐超支费用
///
public decimal ClientBreakfastOverFee { get; set; }
///
/// 自动审核 - 客户午餐
///
public decimal ClientLunchFee { get { return L; } set { L = value; } }
///
/// TODO:(没有具体匹配项)自动审核 - 客户午餐超支费用
///
public decimal ClientLunchOverFee { get; set; }
///
/// 自动审核 - 客户晚餐
///
public decimal ClientDinnerFee { get { return D; } set { D = value; } }
///
/// TODO:(没有具体匹配项)自动审核 - 客户晚餐超支费用
///
public decimal ClientDinnerOverFee { get; set; }
///
/// 自动审核 - 景点门票费用
///
public decimal ScenicTicketFee { get { return EF; } set { EF = value; } }
///
/// 自动审核 - 饮料/零食/水果 费用
///
public decimal DrinkSnackFruitFee { get { return B_R_F; } set { B_R_F = value; } }
///
/// 自动审核 - 翻译费
///
public decimal TranslatorFee { get { return IF; } set { IF = value; } }
///
/// TODO:(没有具体匹配项)自动审核 - 翻译超时费
///
public decimal TranslatorOverTimeFee { get; set; }
#endregion
#region 自动审核 - 酒店相关字段
///
/// 酒店单间费用
///
public decimal HotelSingleRoomFee { get { return SGR; } set { SGR = value; } }
///
/// 酒店双间费用
///
public decimal HotelDoubleRoomFee { get { return TBR; } set { TBR = value; } }
///
/// 酒店小套房/豪华套房费用
///
public decimal HotelSuiteRoomFee { get { return JS_ES; } set { JS_ES = value; } }
///
/// 酒店套房费用
///
public decimal HotelSuiteFee { get { return Suite; } set { Suite = value; } }
#endregion
#region 自动审核 - 其他费用相关字段
///
/// 出行物资费用
///
public decimal TeFee { get { return TE; } set { TE = value; } }
#endregion
}
}