tbemployee.java~9~
来自「用j2ee开发的一个旅店管理系统」· JAVA~9~ 代码 · 共 21 行
JAVA~9~
21 行
package com.xc.hotelmanager.user.control.entity;import javax.ejb.*;import java.util.*;import com.xc.hotelmanager.user.model.*;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 + -
显示快捷键?