📄 logacountinfo.java
字号:
package com.bean;
public class LogAcountInfo {
public static final int COMPUSER=0; //表示内部用户
public static final int SHM = 1; //表示仓管员
public static final int CLIENT = 2; //表示客户
private int acountId;
private int acountType;
private int realPeopleId;
private String realName;
public void setAcountId(int acountId){
this.acountId=acountId;
}
public int getAcountId(){
return this.acountId;
}
public int getAcountType(){
return this.acountType;
}
public void setAcountType(int acountType){
this.acountType=acountType;
}
public void setRealName(String realName){
this.realName=realName;
}
public String getRealName(){
return this.realName;
}
public int getRealPeopleId(){
return this.realPeopleId;
}
public void setRealPeopleId(int realPeopleId){
this.realPeopleId=realPeopleId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -