using System;
using System.Collections.Generic;
using System.Text;
namespace Dfs.WayneChina.SpsDbManager.ResultSet
{
///
/// Result of routine `GetFlag` which check if a particular transactionis inserted into t_trdinfo table.
/// 存储过程`GetFlag`的运行结果,指示特定条件的交易是否已经插入到t_trdinfo表。
///
public class CheckTrxResult
{
///
/// The result:
/// 0 = Non-existing
/// 1 = Existing.
///
public long FlagResult { get; set; }
}
}