📄 arrangedatebo.java
字号:
package com.wondersgroup.basemodule.arrangedate.bo;
import java.util.Date;
import com.wondersgroup.core.BaseBo;
import com.wondersgroup.framework.core.bo.Removable;
/**
* @author zhang ren
* @hibernate.class
* table = "CALENDAR"
* dynamic-update = "true"
*/
public class ArrangeDateBo extends BaseBo implements Removable {
private long id;
private long person_id;
private Date start_time;
private Date end_time;
private String name;
private String place;
private long type;
private long msg_flag;
private String content;
public ArrangeDateBo() {
super();
}
/**
* @hibernate.property
* column = "content"
* length = "500"
* @return
*/
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
/**
* @hibernate.property
* column = "end_time"
* length = "255"
* @return
*/
public Date getEnd_time() {
return end_time;
}
public void setEnd_time(Date end_time) {
this.end_time = end_time;
}
/**
* @hibernate.id
* column = "ID"
* generator-class = "sequence"
* @hibernate.generator-param
* name = "sequence"
* value = "SQE_CALENDAR"
*/
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
/**
* @hibernate.property
* column = "name"
* length = "50"
* @return
*/
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
/**
* @hibernate.property
* column = "person_id"
* @return
*/
public long getPerson_id() {
return person_id;
}
public void setPerson_id(long person_id) {
this.person_id = person_id;
}
/**
* @hibernate.property
* column = "place"
* length = "50"
* @return
*/
public String getPlace() {
return place;
}
public void setPlace(String place) {
this.place = place;
}
/**
* @hibernate.property
* column = "start_time"
* length = "255"
* @return
*/
public Date getStart_time() {
return start_time;
}
public void setStart_time(Date start_time) {
this.start_time = start_time;
}
/**
* @hibernate.property
* column = "msg_flag"
* @return
*/
public long getMsg_flag() {
return msg_flag;
}
public void setMsg_flag(long msg_flag) {
this.msg_flag = msg_flag;
}
/**
* @hibernate.property
* column = "type"
* @return
*/
public long getType() {
return type;
}
public void setType(long type) {
this.type = type;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -