Administrator
2025-12-13 b79d3cb9f15589eb311479c5f772c63bea58dbf1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.xcong.excoin.modules.okxNewPrice.okxpi.verify.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiAccountBalanceInfoDto", description = "参数接收类")
public class ApiAccountProfitDailyDto {
 
    @ApiModelProperty(value = "交易所类型", example = "1")
    private String exchange;
 
    @ApiModelProperty(value = "开始时间", example = "")
    private String startTime;//开始时间
    
    @ApiModelProperty(hidden = true)
    private String endTime;//结束时间
 
    @ApiModelProperty(hidden = true)
    private Long memberId;
}