tbemployee.java~7~

来自「用j2ee开发的一个旅店管理系统」· JAVA~7~ 代码 · 共 20 行

JAVA~7~
20
字号
package com.xc.hotelmanager.user.control.entity;import javax.ejb.*;import java.util.*;public interface TbEmployee extends javax.ejb.EJBLocalObject {  public String getEmid();  public void setEmname(String emname);  public String getEmname();  public void setEmage(int emage);  public int getEmage();  public void setEmsex(String emsex);  public String getEmsex();  public void setEmposition(String emposition);  public String getEmposition();  public void setEmstuts(String emstuts);  public String getEmstuts();  public Emp getEmp();  public void setEmp(Emp employee);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?