新版仿ok交易所-后端
1
zyy
2025-12-20 54a5b503d811f7ca3f356728c3ab1e04451a9a86
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.yami.trading.admin.model;
 
import lombok.Data;
import org.springframework.web.bind.annotation.RequestParam;
 
import javax.validation.constraints.NotBlank;
 
/**
 * @program: trading-order-master
 * @description: 调整利润
 * @create: 2025-08-07 19:11
 **/
@Data
public class AdjustProfitsModel {
 
    private String orderNo;
    private Double profitLossRatio;
 
}