zyy
2026-03-15 35ececb0d9959e010f1ac160f20afd4dba27de57
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
package com.yami.trading.admin.controller.ipo.model;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class ApplyNewSharesOrderUpdateModel {
 
    private  String  orderNo;
    /**
     * 申购价格
     */
    private BigDecimal subPrice;
    /**
     * 申购股数
     */
    private  BigDecimal subNumber;
    /**
     * 中签数量
     */
    private  BigDecimal winningNumber;
    /**
     * 申购需认缴
     */
    private  BigDecimal  requiredSubscribe;
    /**
     * 中签应认缴
     */
    private  BigDecimal requiredNumber;
    /**
     *  已认缴次数
     */
    private  int subscribedCount;
    /**
     * 已认缴金额
     */
    private  BigDecimal  subscribedAmount;
    @ApiModelProperty("认缴次数")
    private  int userPromiseCount=0;
 
}