?? logacountinfo.java
字號:
package com.bean;
public class LogAcountInfo {
public static final int COMPUSER=0; //表示內(nèi)部用戶
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;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -