using Hotline.Share.Dtos.File; namespace Hotline.Share.Dtos.DataSharing.PusherHotlineDto { /// /// 省延期结果通知 /// public class ProvinceSendDelayResultDto: DsSource { /// /// 省工单编号 /// public string No { get; set; } /// /// 是否通过审批 /// public bool IsPass { get; set; } /// /// 办理意见 /// public string Opinion { get; set; } /// /// 审核人 /// public string? AuditName { get; set; } /// /// 审核部门 /// public string? AuditOrgName { get; set; } /// /// 审核时间 /// public DateTime? AuditTime { get; set; } public List Files { get; set; } } }