zyy
2025-12-29 645f40f5f61f8fa217ef01b5b2aaaf687b173577
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;
}