using System;
using System.Collections.Generic;
using Volo.Abp.Application.Dtos;
using System.ComponentModel.DataAnnotations;
namespace Business.ResourceExamineManagement.Dto
{
///
/// 数据同步返回结果Dto
///
public class ResultDto
{
///
/// 开始时间
///
public DateTime start { get; set; }
///
/// 结束时间
///
public DateTime end { get; set; }
///
/// 结果
///
public bool isSuccess { get; set; }
///
/// 异常信息
///
public string msg { get; set; }
}
}