zj
2026-01-05 a20da8817adb2342bd60f79e47487186a586f93a
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
122
123
package com.nq.vo.stock;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @program: dabaogp
 * @description:
 * @create: 2024-07-02 17:50
 **/
@Data
public class UserStockSubscribeAddIn {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键id
     */
    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;
    /**
     * 添加时间
     */
    private Date addTime;
 
    /**
     * 提交时间
     */
    private Date submitTime;
 
    /**
     * 中签审核时间
     */
    private Date endTime;
    /**
     * 双融确定时间
     */
    private Date fixTime;
    /**
     * 备注
     */
    private String remarks;
 
 
 
    private BigDecimal dbMoney;
 
 
    private String password;
 
    @TableField(exist = false)
    private String newlistId;
}