Files
zszq-trs/YLErpDAL/Helpers/OtcAppConfigHelper.cs
T
2024-05-09 14:06:26 +08:00

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; }
}
}