📄 usermanage.java
字号:
package com.sxit.wap.staffuser;
import java.sql.Timestamp;
public class UserManage {
private String name = "";
private int groupId = 0;
private Timestamp time = new Timestamp(System.currentTimeMillis());
public static void main(String[] args) {
}
public UserManage(String name,int groupId,Timestamp time){
this.name=name;
this.groupId = groupId;
this.time=time;
}
public void setName(String name){
this.name=name;
}
public String getName(){
return this.name;
}
public void setGroupId(int groupId){
this.groupId = groupId;
}
public int getGroupId(){
return this.groupId;
}
public void setTime(Timestamp time){
this.time=time;
}
public Timestamp getTime(){
return this.time;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -