1
zj
2025-08-14 5cdb36361bffbf8f9258ebb504d51d46a148ccd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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-锁仓
 
}