|
namespace Dao
|
{
|
public class GwRealtimeStatisItemOut
|
{
|
public int OpID { get; set; }
|
|
public int OpOutCount { get; set; }
|
|
public int OpSuccessCount { get; set; }
|
|
public int OpFailedCount { get; set; }
|
|
public int OpReportRatioThreshold { get; set; }
|
|
public int OpSuccessRatioThreshold { get; set; }
|
|
public int OpOutThreshold { get; set; }
|
|
public string OpName { get; set; }
|
}
|
}
|