1
zyy
2026-04-02 a6c07a0526befbbd8194c97eb8f64b84b1a477a1
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;
}