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

OA系统

开发平台:

Java

  1. package com.bjsxt.oa.model;
  2. /**
  3.  * 
  4.  * @author Lee
  5.  * @hibernate.class table="T_MeetingRoom"
  6.  */
  7. public class MeetingRoom {
  8. /**
  9.  * @hibernate.id
  10.  *  generator-class="native"
  11.  */
  12. private int id;
  13. /**
  14.  * @hibernate.property
  15.  *  unique="true"
  16.  */
  17. private String sn;
  18. /**
  19.  * @hibernate.property
  20.  */
  21. private String position;
  22. /**
  23.  * @hibernate.property
  24.  */
  25. private String description;
  26. public String getDescription() {
  27. return description;
  28. }
  29. public void setDescription(String description) {
  30. this.description = description;
  31. }
  32. public int getId() {
  33. return id;
  34. }
  35. public void setId(int id) {
  36. this.id = id;
  37. }
  38. public String getPosition() {
  39. return position;
  40. }
  41. public void setPosition(String position) {
  42. this.position = position;
  43. }
  44. public String getSn() {
  45. return sn;
  46. }
  47. public void setSn(String sn) {
  48. this.sn = sn;
  49. }
  50. }