新版仿ok交易所-后端
1
zyy
2025-09-17 91c09c67e6460a3818265fdb020db7aacb0bd869
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;
 
}