dashboard
repositories
filestore
activity
search
login
admin
/
admin
forked from
admin
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
1
zj
2024-06-13
a4662cc65a02f258062bf6cc392ceb1017db9292
[~admin/admin.git]
/
trading-order-admin
/
src
/
main
/
java
/
com
/
yami
/
trading
/
api
/
controller
/
ipo
/
model
/
ApplyNewSharesOrderModel.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.yami.trading.api.controller.ipo.model;
import lombok.Data;
import java.math.BigDecimal;
@Data
public class ApplyNewSharesOrderModel {
private String code;
private BigDecimal amount;
}