20 lines
444 B
C#
20 lines
444 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 CheckUnderlyingRequest
|
|
{
|
|
public int clientId { get; set; }
|
|
public string securityId { get; set; }
|
|
public int side { get; set; }
|
|
public decimal orderQty { get; set; }
|
|
}
|
|
}
|