CheckTrxResult.cs 593 B

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