using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Models { //公务出访详细表 public class ApprovalTravelDetails { public int Id { get; set; } public string Time { get; set; } public int ParentId { get; set; } public string Details { get; set; } public int IsDel { get; set; } } }