?? storehousemanageroutview.java
字號:
package com.bean;
import org.apache.struts.action.ActionForm;
public class StorehouseManagerOutView extends ActionForm{
private int shmId;
private int compFlag;
private int delFlag;
private String realName;
private String sex;
private int outShMagerId;
private String tel;
private String fax;
private String email;
public StorehouseManagerOutView(){};
public void setShmId(int shmId){
this.shmId=shmId;
}
public int getShmId(){
return this.shmId;
}
public void setCompFlag(int compFlag){
this.compFlag=compFlag;
}
public int getCompFlag(){
return this.compFlag;
}
public void setDelFlag(int delFlag){
this.delFlag=delFlag;
}
public int getDelFlag(){
return this.delFlag;
}
public void setRealName(String realName){
this.realName=realName;
}
public String getRealName(){
return this.realName;
}
public void setSex(String sex){
this.sex=sex;
}
public String getSex(){
return this.sex;
}
public void setOutShMagerId(int outShMagerId){
this.outShMagerId=outShMagerId;
}
public int getOutShMagerId(){
return this.outShMagerId;
}
public void setTel(String tel){
this.tel=tel;
}
public String getTel(){
return this.tel;
}
public void setFax(String fax){
this.fax=fax;
}
public String getFax(){
return this.fax;
}
public void setEmail(String email){
this.email=email;
}
public String getEmail(){
return this.email;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -