MeetingRoom.java
资源名称:oa.rar [点击查看]
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:1k
源码类别:
OA系统
开发平台:
Java
- package com.bjsxt.oa.model;
- /**
- *
- * @author Lee
- * @hibernate.class table="T_MeetingRoom"
- */
- public class MeetingRoom {
- /**
- * @hibernate.id
- * generator-class="native"
- */
- private int id;
- /**
- * @hibernate.property
- * unique="true"
- */
- private String sn;
- /**
- * @hibernate.property
- */
- private String position;
- /**
- * @hibernate.property
- */
- private String description;
- public String getDescription() {
- return description;
- }
- public void setDescription(String description) {
- this.description = description;
- }
- public int getId() {
- return id;
- }
- public void setId(int id) {
- this.id = id;
- }
- public String getPosition() {
- return position;
- }
- public void setPosition(String position) {
- this.position = position;
- }
- public String getSn() {
- return sn;
- }
- public void setSn(String sn) {
- this.sn = sn;
- }
- }