zj
2025-10-17 bbc4713b23778aebc1eb3d46cb04d539179d883d
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.yami.trading.admin.controller.ipo.model;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class ApplyNewSharesOrderModel {
 
    private  String  userCode;
 
    private  String productCode;
 
    /**
     * 申购价格
     */
    private BigDecimal subPrice;
    /**
     * 申购股数
     */
    private  BigDecimal subNumber;
    /**
     * 中签数量
     */
    private  BigDecimal winningNumber;
    /**
     * 申购需认缴
     */
    private  BigDecimal  requiredSubscribe;
    /**
     * 中签应认缴
     */
    private  BigDecimal requiredNumber;
    /**
     *  已认缴次数
     */
    private  int subscribedCount;
    /**
     * 已认缴金额
     */
    private  BigDecimal  subscribedAmount;
 
 
    private  int status;
 
 
}