1
zyy
2026-04-10 cde6bf659b0d88a7d4e9d28fb13e86a4a8f5b481
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.yami.trading.bean.exchange.dto;
 
import lombok.Data;
 
@Data
public class SumEtfDto {
    private String profitLoss="0";  //盈亏
 
    private String toDayProfitLoss="0"; //今日盈亏
 
    private String sumPrice="0";  //总资产
 
    private String sumVolume="0"; //可用
}