20 lines
519 B
C#
20 lines
519 B
C#
using BaseOUDAL;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Model
|
|
{
|
|
/// <summary>
|
|
/// 互换预付金监控请求
|
|
/// </summary>
|
|
public class SwapMarginMonitorRequest: BaseSearchReq
|
|
{
|
|
public List<int> ClientIds { get; set; } = new List<int>();
|
|
public List<string> WarnningTypes { get; set;} = new List<string>();
|
|
public List<int> SwapTypes { get; set;} = new List<int>();
|
|
}
|
|
}
|