ipo
zyy
2025-12-30 e9520b1f4906738caddd3a6193159fc858d23ce8
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
34
35
36
37
package com.yami.trading.bean.model;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.Version;
import com.yami.trading.common.domain.UUIDEntity;
import lombok.Data;
 
@Data
@TableName("t_follow_wallet_extend")
public class FollowWalletExtend extends UUIDEntity {
 
    @Version
    private  int version;
    private static final long serialVersionUID = -926374250240199976L;
    private String partyId;
    /**
     * 币种,见Constants定义
     */
    private String wallettype;
    /**
     * 金额
     */
    private double amount = 0.0D;
 
    /**
     * 锁定金额
     */
    private double lockAmount = 0.0D;
 
    /**
     * 冻结金额
     */
    private double freezeAmount = 0.0D;
 
 
    private String name;
}