1
zyy
5 days ago c272cabfe3814857218601ae7aa61b5923d7d4ec
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;
}