zj
2024-06-03 7479d2c5169265cf29e432a30b22c31073106751
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
package com.nq.vo.stock;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @program: dabao
 * @description:
 * @create: 2024-04-01 14:00
 **/
@Data
public class UserStockSubscribeVo {
 
    /**
     * 主键id
     */
    @TableId(value="id",type= IdType.AUTO)
    private Integer id;
    /**
     *訂單編號
     */
    private String orderNo;
    /**
     * 用户id
     */
    private Integer userId;
 
    /**
     * 用户真实姓名
     */
    private String realName;
 
    /**
     * 用户手机号
     */
    private String phone;
 
    /**
     * 代理id
     */
    private Integer agentId;
 
    /**
     * 代理姓名
     */
    private String agentName;
 
    /**
     * 申购股票代码
     */
    private String newCode;
    /**
     * 申购股票名称
     */
    private String newName;
    /**
     * 保证金
     *
     */
    private BigDecimal bond;
    /**
     * 发行价格
     *
     */
    private BigDecimal buyPrice;
    /**
     * 申购数量
     *
     */
    private Integer applyNums;
    /**
     * 中签数量
     *
     */
 
    private Integer applyNumber;
    private Integer type;
    /**
     * 申购状态
     *状态:1、已申购,2、未中签,3、已中签,4、已缴纳 5.已转持仓
     */
    private Integer status;
    /**
     * 添加时间
     */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
    private Date addTime;
 
    /**
     * 提交时间
     */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
    private Date submitTime;
 
    /**
     * 中签审核时间
     */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
    private Date endTime;
    /**
     * 双融确定时间
     */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
    private Date fixTime;
    /**
     * 备注
     */
    private String remarks;
 
    /**
     * 最大认缴数量
     */
    private Integer maxSubscribeNum;
 
 
}