account.java

来自「这是我们做的一个网上购物系统,包手用户和管理员两大功能模块,采用jsp+serv」· Java 代码 · 共 29 行

JAVA
29
字号
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 + =
减小字号Ctrl + -
显示快捷键?