using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { public class BackProgress { /// /// 标识 /// public int Id { get; set; } /// /// 团号 /// public int Diid { get; set; } /// /// 报批资料准备时间 /// public string BPTime { get; set; } /// /// 报批资料说明 /// public string BPRemark { get; set; } /// ///报批/提供送签资料准备时间 /// public string SQTime { get; set; } /// /// 报批/提供送签资料准备说明 /// public string SQRemark { get; set; } /// /// 出批件时间 /// public string CPJTime { get; set; } /// /// 出批件说明 /// public string CPJRemark { get; set; } /// /// 护照办理时间 /// public string HZTime { get; set; } /// /// 护照办理说明 /// public string HZRemark { get; set; } /// /// 签证资料准备时间 /// public string QZTime { get; set; } /// /// 签证资料准备说明 /// public string QZRemark { get; set; } /// /// 送签签证时间 /// public string SQQZTime { get; set; } /// /// 送签签证说明 /// public string SQQZRemark { get; set; } /// /// 出签时间 /// public string CQTime { get; set; } /// /// 出签说明 /// /// public string CQRemark { get; set; } /// /// 行前会时间 /// public string XQHTime { get; set; } /// /// 行前会说明 /// public string XQHRemark { get; set; } /// /// 送机时间 /// public string SJTime { get; set; } /// /// 送机说明 /// public string SJRemark { get; set; } /// /// OPId /// public int OPer { get; set; } /// /// OP时间 /// public string OPDate { get; set; } /// /// 删除标识 /// public int Isdel { get; set; } } }