You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
716 B
31 lines
716 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace OT.COM.ArsenalDB
|
|
{
|
|
/// <summary>
|
|
/// Query data set result
|
|
/// </summary>
|
|
public class QueryDataSet
|
|
{
|
|
public Type DataType { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets of real result
|
|
/// </summary>
|
|
public DataSet DATA { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets total count
|
|
/// </summary>
|
|
public long Total { get; set; }
|
|
|
|
public string ErrorMsg { get; set; }
|
|
|
|
public string ErrorCode { get; set; }
|
|
|
|
public bool IsSuccess { get { return this.ErrorMsg == null; } }
|
|
}
|
|
}
|