新版仿ok交易所-后端
zyy
2025-09-13 c51d40152063cd014fa7d444148960f6f9c3282c
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;
 
}