using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 国家_签证费用标准
///
public class Country_FeeCost
{
///
/// 主键id
///
public int VisaId { get; set; }
///
/// 洲名
///
public string VisaContinent { get; set; }
///
/// 国家名
///
public string VisaCountry { get; set; }
///
/// 是否免签免签 0:是 1:否
///
public int IsVisaExemption { get; set; }
///
/// 是否落地签 0:是 1:否
///
public int IsVisaOnArrival { get; set; }
///
/// 是否电子签 0:是 1:否
///
public int IsElectronicSignature { get; set; }
///
/// 签证费用
///
public float VisaPrice { get; set; }
///
/// 签证费用描述
///
public string VisaPriceDesc { get; set; }
///
/// 签证类型 大公务/小公务/大小公务同时免签
///
public string VisaType { get; set; }
///
/// 一般签证时间
///
public string VisaTime { get; set; }
//签证是否加急 0:加急 1: 不加急
public int IsUrgent { get; set; }
///
/// 加急时间
///
public string UrgentTime { get; set; }
///
/// 加急费用
///
public float UrgentPrice { get; set; }
///
/// 加急费用描述
///
public string UrgentPriceDesc { get; set; }
///
/// 签证地址
///
public string VisaAddress { get; set; }
///
/// 签证备注
///
public string VisaRemark { get; set; }
///
/// 操作人 users外键Id
///
public int Oper { get; set; }
///
/// 操作时间
///
public string OPDate { get; set; }
///
/// 状态识别
///
public int isDel { get; set; }
}
}