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

24 lines
495 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Model
{
/// <summary>
/// 互换预付金预警设置
/// </summary>
public class SwapMonitorConfig
{
/// <summary>
/// 预警线
/// </summary>
public double WarningLine { get; set; }
/// <summary>
/// 平仓线
/// </summary>
public double UnwindLine { get; set; }
}
}