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