zyy
2025-12-02 dd661f80c2367581c1884732c787cb613f00bf83
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.yami.trading.admin.controller.exchange.model;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel
public class CloseModel {
 
    @ApiModelProperty("订单号")
    private  String orderNo;
}