MeetingRoomApplyVO.java
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. package com.bjsxt.oa.model;
  2. /**
  3.  * 
  4.  * @author Lee
  5.  */
  6. public class MeetingRoomApplyVO {
  7. /**
  8.  * 格式为:year-month-day-hour
  9.  */
  10. private String id;
  11. private int oid;
  12. /**
  13.  */
  14. private String applyReason;
  15. /**
  16.  */
  17. private String status;
  18. public String getApplyReason() {
  19. return applyReason;
  20. }
  21. public void setApplyReason(String applyReason) {
  22. this.applyReason = applyReason;
  23. }
  24. public String getId() {
  25. return id;
  26. }
  27. public void setId(String id) {
  28. this.id = id;
  29. }
  30. public String getStatus() {
  31. return status;
  32. }
  33. public void setStatus(String status) {
  34. this.status = status;
  35. }
  36. public int getOid() {
  37. return oid;
  38. }
  39. public void setOid(int oid) {
  40. this.oid = oid;
  41. }
  42. }