using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Resource { [SugarTable("Res_CountryFeeCost")] public class Res_CountryFeeCost:EntityBase { /// /// 洲名 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string VisaContinent { get; set; } /// /// 国家名 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string VisaCountry { get; set; } /// /// 是否免签免签 0:是 1:否 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int IsVisaExemption { get; set; } /// /// 是否落地签 0:是 1:否 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int IsVisaOnArrival { get; set; } /// /// 是否电子签 0:是 1:否 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int IsElectronicSignature { get; set; } /// /// 签证费用 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")] public decimal VisaPrice { get; set; } /// /// 签证费用描述 /// [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(255)")] public string VisaPriceDesc { get; set; } /// /// 签证类型 大公务/小公务/大小公务同时免签 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string VisaType { get; set; } /// /// 一般签证时间 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string VisaTime { get; set; } /// /// 签证是否加急 0:加急 1: 不加急 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int IsUrgent { get; set; } /// /// 加急时间 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string UrgentTime { get; set; } /// /// 加急费用 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")] public decimal UrgentPrice { get; set; } /// /// 加急费用描述 /// [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(255)")] public string UrgentPriceDesc { get; set; } /// /// 签证地址 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string VisaAddress { get; set; } } }