admin
2022-04-21 2464548977f4720bc8fceeb5d999c1a3852c2d10
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
package com.yeshi.makemoney.app.vo.user;
 
/**
 * @author hxh
 * @title: UserAssetsVO
 * @description: 用户资产
 * @date 2022/4/20 14:36
 */
public class UserAssetsVO {
    private int goldCorn;
    private String balance;
 
    public int getGoldCorn() {
        return goldCorn;
    }
 
    public void setGoldCorn(int goldCorn) {
        this.goldCorn = goldCorn;
    }
 
    public String getBalance() {
        return balance;
    }
 
    public void setBalance(String balance) {
        this.balance = balance;
    }
}