user.java

来自「只做是单选题!数据库表有三张:EUser,EItem,Score」· Java 代码 · 共 62 行

JAVA
62
字号
/* * DVDItem.java * * Created on November 28, 2006, 4:48 PM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */package com.exam.model;/** * * @author revans */public class User {    private int UID;    private String username;    private String password;    /** Creates a new instance of DVDItem */    public User(int UID, String username, String password) {        this.UID = UID;        this.username = username;        this.password = password;    }    public int getUID() {        return UID;    }    public String getUsername() {        return username;    }    public String getPassword() {        return password;    }    /**     * @param UID the UID to set     */    public void setUID(int UID) {        this.UID = UID;    }    /**     * @param username the username to set     */    public void setUsername(String username) {        this.username = username;    }    /**     * @param password the password to set     */    public void setPassword(String password) {        this.password = password;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?