using System; using System.Collections.Generic; namespace EntrustSettle.Model.Dtos { public class HydQueryResultDto { public long id { get; set; } public string billNo { get; set; } public int? status { get; set; } //public string remark { get; set; } public List feedbackList { get; set; } public class Feedback { /// /// 1-申请账单 /// public int billApplyFlag { get; set; } /// /// 1=海运达推送的文件 /// public int sendType { get; set; } /// /// 文件id /// public long id { get; set; } /// /// 反馈信息上传附件地址 /// public string fileUrl { get; set; } /// /// 反馈信息上传附件文件名 /// public string fileName { get; set; } /// /// 反馈信息备注 /// public string remark { get; set; } /// /// 反馈信息添加时间 /// public DateTime? createTime { get; set; } } } }