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
| package com.yeshi.makemoney.app.vo.goldcorn;
|
| /**
| * @author hxh
| * @title: ExtractInfoVO
| * @description: 用户金币信息
| * @date 2022/4/20 17:39
| */
| public class GoldCornInfoVO {
|
| private int balance;
| private int exchanging;
|
|
| public int getBalance() {
| return balance;
| }
|
| public void setBalance(int balance) {
| this.balance = balance;
| }
|
| public int getExchanging() {
| return exchanging;
| }
|
| public void setExchanging(int exchanging) {
| this.exchanging = exchanging;
| }
| }
|
|