⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 account.java

📁 这是我们做的一个网上购物系统,包手用户和管理员两大功能模块,采用jsp+servlet+java bean技术.
💻 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 + -