using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Groups
{
///
/// 团组签证
/// 费用详情
///
[SugarTable("Grp_VisaFeeInfo")]
public class Grp_VisaFeeInfo:EntityBase
{
///
/// 团组Id
///
[SugarColumn(IsNullable = true ,ColumnDataType = "int")]
public int DiId { get; set; }
///
/// 是否选中
/// 0 未选 1 选中
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int IsChecked { get; set; } = 0;
///
/// 国家签证费用 Id
/// Res_CountryFeeCost Id
///
[SugarColumn(IsNullable = true,ColumnDataType = "int")]
public int CountryVisaFeeId { get; set; }
///
/// 代办费 - 公务 类型 1 大公务 2 小公务
/// 新增字段
/// 雷怡 2024-05-07 15:45:09
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int OBType { get; set; }
///
/// 代办费
/// 新增字段
/// 雷怡 2024-05-07 15:45:09
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
public decimal AgencyFee { get; set; }
///
/// 其他费用
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
public decimal OtherFee { get; set; }
}
}