using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Models
{
///
/// 倒推表 -> 签证
///
public class BackwardTable_Visa
{
///
/// 编号
///
public int BT_Id { get; set; }
///
/// 团组编号
///
public int BT_Diid { get; set; }
///
/// 签证国家
///
public string BT_VisaCountry { get; set; }
///
/// 公务类型
///
public string BT_BusinessType { get; set; }
///
/// 签证类型
///
public string BT_VisaType { get; set; }
///
/// 送签时间
///
public string BT_VisaTime { get; set; }
///
/// 操作者
///
public int BT_Oper { get; set; }
///
/// 操作时间
///
public string BT_OperDate { get; set; }
///
/// 删除标识 0/1
///
public int BT_Isdel { get; set; }
}
}