新版仿ok交易所-后端
1
zj
2026-03-11 75c2cb06b27b8812427f16c8657dc2eb9b4d09e5
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;
 
}