Signstate.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.  *类名称: Signstate<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 Signstate {
  19. private int id;
  20. private String describestate;
  21. private String time;
  22. /**
  23.  * 签到状态
  24.  */
  25. public Signstate() {
  26. super();
  27. id=0;
  28. describestate="";
  29. time=new Time().getHMS();
  30. }
  31. public void setId(int id){
  32. this.id=id;
  33. }
  34. public int getId(){
  35. return id;
  36. }
  37. public void setDescribestate(String describestate){
  38. this.describestate=describestate;
  39. }
  40. public String getDescribestate(){
  41. return describestate;
  42. }
  43. public void setTime(String time){
  44. this.time=time;
  45. }
  46. public String getTime(){
  47. return time;
  48. }
  49. }