using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 倒推表和签证受理时间表关联 /// public class VisaCheckTimeForBack { public int Id { get; set; } public int Diid { get; set; } public string Country { get; set; } public string Time { get; set; } public int Isdel { get; set; } } }