Signstate.java
资源名称:OA.rar [点击查看]
上传用户:sxwtmm
上传日期:2022-08-11
资源大小:2183k
文件大小:1k
源码类别:
OA系统
开发平台:
Java
- /*
- * Created on 2004-9-17
- *
- * To change the template for this generated file go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
- package oa.data;
- import oa.sys.*;
- /**
- ****************************************************
- *类名称: Signstate<br>
- *类功能: 签到状态(类型)<br>
- *创建: 白伟明 2004年9月23日<br>
- ****************************************************
- * To change the template for this generated type comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
- public class Signstate {
- private int id;
- private String describestate;
- private String time;
- /**
- * 签到状态
- */
- public Signstate() {
- super();
- id=0;
- describestate="";
- time=new Time().getHMS();
- }
- public void setId(int id){
- this.id=id;
- }
- public int getId(){
- return id;
- }
- public void setDescribestate(String describestate){
- this.describestate=describestate;
- }
- public String getDescribestate(){
- return describestate;
- }
- public void setTime(String time){
- this.time=time;
- }
- public String getTime(){
- return time;
- }
- }