zyy
2025-10-28 d9e8ad9fa3eb8558fc93d6fe7876699c7a8e2669
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.yami.trading.api.controller.ipo.model;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel
public class ApplyPromiseModel {
 
    @ApiModelProperty("认缴金额(股数)")
    private BigDecimal deductNumber;
 
    @ApiModelProperty("订单号")
    private  String orderNo;
}