package com.nq.vo.smart;
|
|
import lombok.Data;
|
|
import javax.validation.constraints.*;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @program: dabaogp
|
* @description:
|
* @create: 2025-07-15 10:52
|
**/
|
@Data
|
public class IntradayOrderVo {
|
|
private Integer id; // 订单ID
|
|
private Integer smartId;
|
|
@NotNull(message = "订单金额不能为空")
|
@DecimalMin(value = "1", message = "订单金额必须大于0")
|
private BigDecimal orderAmount; // 订单金额
|
|
private String stockType; // 股票类型: 日股/美股/港股等
|
|
private String stockCode; // 股票编码
|
|
private String stockName; // 股票名称
|
|
private String stockGid; // 股票GID
|
|
private Integer stockQuantity; // 股票数量
|
|
private Integer priceType; // 涨跌类型: 1-买涨,2-买跌
|
|
private String positionOrder; // 持仓订单
|
|
private String stockPrice; // 股票价格
|
//
|
// private Integer auditStatus = 0; // 审核状态: 0-未审核,1-审核通过,2-审核拒绝
|
|
private String orderTime; // 下单时间
|
|
private Integer isLocked; // 是否锁仓: 0-开仓,1-锁仓
|
|
}
|