This commit is contained in:
sunkaixuan
2017-08-31 17:22:32 +08:00
parent bd5078e73f
commit e172c07468

View File

@@ -8,8 +8,8 @@ namespace SqlSugar
public class DbResult<T>
{
public bool IsSuccess { get; set; }
public Exception Exception { get; set; }
public string Messaage { get; set; }
public Exception ErrorException { get; set; }
public string ErrorMessaage { get; set; }
public T Data { get; set; }
}
}