storehousemanageroutview.java
来自「hibernate应用测试,初学hibernate 的会员可以看看.」· Java 代码 · 共 82 行
JAVA
82 行
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 + =
减小字号Ctrl + -
显示快捷键?