📄 informbo.java
字号:
package com.wondersgroup.basemodule.inform.bo;
import java.util.Date;
import com.wondersgroup.basemodule.bo.AreaBo;
import com.wondersgroup.core.BaseBo;
import com.wondersgroup.framework.core.bo.Removable;
/**
* 通知表
* @author nieqibin
* @hibernate.class
* table = "INFORM"
* dynamic-update = "true"
*/
public class InformBo extends BaseBo implements Removable {
private long id; //编号
private long deliverinfrom; //发通知人
private String name; //通知标题
private Date start_time; //开始时间
private Date end_time; //结束时间
private long deliverUnit; //发出单位
private long deliverDept; //发出部门
private long deliverArea; //发出范围
private String informContent; //通知内容
private long adjunct; //附件
private long putTip; //是否置顶
/**
* @hibernate.id
* column = "ID"
* generator-class = "sequence"
* @hibernate.generator-param
* name = "sequence"
* value = "SQE_BASE_INFORM"
*/
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
/**
* @hibernate.property
* column = "ADJUNCT"
* @return
*/
public long getAdjunct() {
return adjunct;
}
public void setAdjunct(long adjunct) {
this.adjunct = adjunct;
}
/**
* @hibernate.property
* column = "DELIVER_DEPT"
* @return
*/
public long getDeliverDept() {
return deliverDept;
}
public void setDeliverDept(long deliverDdept) {
this.deliverDept = deliverDdept;
}
/**
* @hibernate.property
* column = "DELIVER_INFROM"
* @return
*/
public long getDeliverinfrom() {
return deliverinfrom;
}
public void setDeliverinfrom(long deliverinfrom) {
this.deliverinfrom = deliverinfrom;
}
/**
* @hibernate.property
* column = "DELIVER_UNIT"
* @return
*/
public long getDeliverUnit() {
return deliverUnit;
}
public void setDeliverUnit(long deliverUnit) {
this.deliverUnit = deliverUnit;
}
/**
* @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.property
* column = "INFORM_CONTENT"
* length = "50"
* @return
*/
public String getInformContent() {
return informContent;
}
public void setInformContent(String informContent) {
this.informContent = informContent;
}
/**
* @hibernate.property
* column = "NAME"
* length = "50"
* @return
*/
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
/**
* @hibernate.property
* column = "PUT_TIP"
* @return
*/
public long getPutTip() {
return putTip;
}
public void setPutTip(long putTip) {
this.putTip = putTip;
}
/**
* @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 = "DELIVER_AREA"
* @return
*/
public long getDeliverArea() {
return deliverArea;
}
public void setDeliverArea(long deliverArea) {
this.deliverArea = deliverArea;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -