📄 user.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package com.online.pojo;/** * * @author Administrator */public class User implements java.io.Serializable { public int uid; public String username; public 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 String getUsername() { return username; } public String getPassword() { return password; } public int getUid() { return uid; } public void setPassword(String password) { this.password = password; } public void setUid(int uid) { this.uid = uid; } public void setUsername(String username) { this.username = username; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -