Emr.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. import oa.sys.*;
  9. /**
  10.  ****************************************************
  11.  *类名称: Emr<br>
  12.  *类功能: 员工日志(类型)<br>
  13.  *创建: 白伟明 2004年9月23日<br>
  14.  ****************************************************
  15.  * To change the template for this generated type comment go to
  16.  * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
  17.  */
  18. public class Emr {
  19. private int recorded;
  20. private String time;
  21. private String work;
  22. private int emid;
  23. /**
  24.  * 员工日志
  25.  */
  26. public Emr() {
  27. super();
  28. recorded=0;
  29. time=new Time().getYMDHMS();
  30. work="";
  31. emid=0;
  32. }
  33. public void setRecorded(int recorded) {
  34. this.recorded = recorded;
  35. }
  36. public int getRecorded() {
  37. return recorded;
  38. }
  39. public void setString(String time) {
  40. this.time = time;
  41. }
  42. public String getString() {
  43. return time;
  44. }
  45. public void setWork(String work) {
  46. this.work = work;
  47. }
  48. public String getWork() {
  49. return work;
  50. }
  51. public void setEmid(int emid) {
  52. this.emid = emid;
  53. }
  54. public int getEmid() {
  55. return emid;
  56. }
  57. }