新版仿ok交易所-后端
1
zyy
2026-03-24 513e5442723f501525bf9ca6210b16561e5d3a2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.yami.trading.admin.model;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.Min;
import javax.validation.constraints.NotBlank;
import java.math.BigDecimal;
 
/**
 * @program: trading-order-master
 * @description:
 * @create: 2025-01-09 10:59
 **/
@Data
@ApiModel
public class TransferModel {
    /**
     * contract   :   合约
     * capital    :   资金
      */
    @ApiModelProperty("划转账户")
    private String deductAccount;
 
    @ApiModelProperty("接收账户")
    private String receiveAccount;
 
    @ApiModelProperty("账变金额(不能小于0)")
    @Min(0)
    private BigDecimal moneyRevise;
 
}