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;
| }
| }
|
|