Level.java
上传用户:sxwtmm
上传日期:2022-08-11
资源大小:2183k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2.  * Created on 2004-9-17
  3.  *
  4.  * To change the template for this generated file go to
  5.  * Window>Preferences>Java>Code Generation>Code and Comments
  6.  */
  7. package oa.data;
  8. /**
  9.  ****************************************************
  10.  *类名称: Level<br>
  11.  *类功能: 优秀员工等级(类型)<br>
  12.  *创建: 白伟明 2004年9月23日<br>
  13.  ****************************************************
  14.  * To change the template for this generated type comment go to
  15.  * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
  16.  */
  17. public class Level {
  18. private int id;
  19. private String level;
  20. private String explain;
  21. /**
  22.  * 优秀员工等级
  23.  */
  24. public Level() {
  25. super();
  26. id=0;
  27. level="";
  28. explain="";
  29. }
  30. public void setId(int id) {
  31. this.id = id;
  32. }
  33. public int getid() {
  34. return id;
  35. }
  36. public void setLevel(String level) {
  37. this.level = level;
  38. }
  39. public String getLevel() {
  40. return level;
  41. }
  42. public void setExplain(String explain) {
  43. this.explain = explain;
  44. }
  45. public String getExplain() {
  46. return explain;
  47. }
  48. }