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
{
///
/// 团组签证费用info
///
public class VisaFeeInfoView: Grp_VisaFeeInfo
{
}
public class VisaFeeInfosView
{
public int Id { get; set; }
///
/// 是否选中
///
public int IsChecked { get; set; }
///
/// 国家
///
public string Country { get; set; }
///
/// 签证费用
///
public decimal VisaFee { get; set; }
///
/// 代办费 - 公务 类型 1 大公务 2 小公务
/// 新增
/// 雷怡 2024-08-07 17:08:13
///
public int OBType { get; set; } = 1;
///
/// 代办费公务描述
/// 雷怡 2024-08-07 17:08:23
///
public string OBTypeStr
{
get
{
string str = "Unknown";
if (OBType == 1) str = "大公务";
else if (OBType == 2) str = "小公务";
return str;
}
}
///
/// 代办费
/// 新增
/// 雷怡 2024-05-07 15:45:09
///
public decimal AgencyFee { get; set; }
///
/// 其他费用
///
public decimal OtherFee { get; set; }
}
}