21 lines
507 B
C#
21 lines
507 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Helpers
|
|
{
|
|
public static class OtcAppConfigHelper
|
|
{
|
|
/// <summary>
|
|
/// 对冲交易数据源(衡泰对冲:1,TRS对冲:2);两者都有:3
|
|
/// </summary>
|
|
public static int HedgingSource { get; set; }
|
|
/// <summary>
|
|
/// 接收衡泰回执
|
|
/// </summary>
|
|
public static int HTUpdate { get; set; }
|
|
}
|
|
}
|