using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Groups
{
///
/// 签证进度表
///
[SugarTable("Grp_VisaProgress")]
public class Grp_VisaProgress:EntityBase
{
///
/// 团组表Id
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int DiId { get; set; }
///
/// 国家
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string Country { get; set; }
///
/// 收集资料
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string GetData { get; set; }
///
/// 收集资料时间
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public DateTime GetDataTime { get; set; }
///
/// 取护照
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string GetPassport { get; set; }
///
/// 取护照时间
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public DateTime GetPassportTime { get; set; }
///
/// 填资料
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string FillData { get; set; }
///
/// 填资料时间
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public DateTime FillDataTime { get; set; }
///
/// 送签
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string SendVisa { get; set; }
///
/// 送签时间
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public DateTime SendVisaTime { get; set; }
///
/// 出签
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string SignOut { get; set; }
///
/// 出签时间
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public DateTime SignOutTime { get; set; }
///
/// 归还护照
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string SendBackPassport { get; set; }
///
/// 归还护照时间
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public string SendBackPassporTime { get; set; }
///
/// 护照接收者
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string Receiver { get; set; }
}
}