1
zj
2024-05-27 1405d2e5b97e8f934cfb9a127c108c63f4dbcf3b
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
package com.nq.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.Date;
 
/**
* @Description:  新股申购
* @Param:
* @return:
* @Author: tf
* @Date: 2022/10/25
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@TableName(value ="user_stock_subscribe")
public class UserStockSubscribe implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键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 BigDecimal dbMoney;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getOrderNo() {
        return orderNo;
    }
 
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
 
    public Integer getUserId() {
        return userId;
    }
 
    public void setUserId(Integer userId) {
        this.userId = userId;
    }
 
    public String getRealName() {
        return realName;
    }
 
    public void setRealName(String realName) {
        this.realName = realName;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public Integer getAgentId() {
        return agentId;
    }
 
    public void setAgentId(Integer agentId) {
        this.agentId = agentId;
    }
 
    public String getAgentName() {
        return agentName;
    }
 
    public void setAgentName(String agentName) {
        this.agentName = agentName;
    }
 
    public String getNewCode() {
        return newCode;
    }
 
    public void setNewCode(String newCode) {
        this.newCode = newCode;
    }
 
    public String getNewName() {
        return newName;
    }
 
    public void setNewName(String newName) {
        this.newName = newName;
    }
 
    public BigDecimal getBond() {
        return bond;
    }
 
    public void setBond(BigDecimal bond) {
        this.bond = bond;
    }
 
    public BigDecimal getBuyPrice() {
        return buyPrice;
    }
 
    public void setBuyPrice(BigDecimal buyPrice) {
        this.buyPrice = buyPrice;
    }
 
    public Integer getApplyNums() {
        return applyNums;
    }
 
    public void setApplyNums(Integer applyNums) {
        this.applyNums = applyNums;
    }
 
    public Integer getApplyNumber() {
        return applyNumber;
    }
 
    public void setApplyNumber(Integer applyNumber) {
        this.applyNumber = applyNumber;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public Date getAddTime() {
        return addTime;
    }
 
    public void setAddTime(Date addTime) {
        this.addTime = addTime;
    }
 
    public Date getSubmitTime() {
        return submitTime;
    }
 
    public void setSubmitTime(Date submitTime) {
        this.submitTime = submitTime;
    }
 
    public Date getEndTime() {
        return endTime;
    }
 
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
 
    public Date getFixTime() {
        return fixTime;
    }
 
    public void setFixTime(Date fixTime) {
        this.fixTime = fixTime;
    }
 
    public String getRemarks() {
        return remarks;
    }
 
    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }
 
    public BigDecimal getDbMoney() {
        return dbMoney;
    }
 
    public void setDbMoney(BigDecimal dbMoney) {
        this.dbMoney = dbMoney;
    }
 
 
 
}