namespace Falcon.SugarApi.ApiDefinistions { /// /// 异常返回模型 /// public class ExceptionModel { /// /// 异常编号 /// public string Id { get; set; } /// /// 异常信息 /// public string Message { get; set; } /// /// 异常发生时间 /// public string CreateDateTime { get; set; } } }