using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Groups
{
///
/// 团组 - 出入境国家费用标准
/// 适用于出入境模块
///
[SugarTable("Grp_NationalTravelFee")]
public class Grp_NationalTravelFee : EntityBase
{
///
/// 洲别
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string? Continent { get; set; }
///
/// 国家
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string? Country { get; set; }
///
/// 城市
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string? City { get; set; }
///
/// 币种
/// Sys_SetData STid=66
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int Currency { get; set; }
///
/// 住宿费
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
public string? RoomCost { get; set; }
///
/// 伙食费
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
public string? FoodCost { get; set; }
///
/// 公杂费
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
public string? PublicCost { get; set; }
///
/// 最后更新人
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int LastUpdateUserId { get; set; }
///
/// 最后更新时间
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public DateTime? LastUpdateTime { get; set; } = DateTime.Now;
}
}