新版仿ok交易所-后端
1
zj
2026-02-02 95148261c39f46e4a6f25d4f7b900f60cdcff3b0
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;
 
}