📄 account.java
字号:
package com.qyg.shop.account;
//对应数据库account表,用户冲值信息类
public class Account {
private int account_id;
private int account_userId;//申请冲值人ID
private double account_money;//申请冲值金额
public int getAccount_id() {
return account_id;
}
public void setAccount_id(int account_id) {
this.account_id = account_id;
}
public int getAccount_userId() {
return account_userId;
}
public void setAccount_userId(int account_userId) {
this.account_userId = account_userId;
}
public double getAccount_money() {
return account_money;
}
public void setAccount_money(double account_money) {
this.account_money = account_money;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -