package com.ekexiu.portal.notify;
import org.jfw.apt.orm.annotation.entry.Column;
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
import org.jfw.apt.orm.annotation.entry.Table;
import org.jfw.apt.orm.core.enums.DE;
@Table
@PrimaryKey("id")
public class NotifyMsgCnt{
private String id;
private String cnt;
private String reciver;
private boolean readed;
private String pid;
private String uid;
private String createTime;
private int opType;
private transient String timeDesc;
@Column(DE.text_de)
public String getTimeDesc() {
return timeDesc;
}
public void setTimeDesc(String timeDesc) {
this.timeDesc = timeDesc;
}
@Column(DE.id_32)
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
@Column(DE.text_de)
public String getCnt() {
return cnt;
}
public void setCnt(String cnt) {
this.cnt = cnt;
}
@Column(DE.text_de)
public String getReciver() {
return reciver;
}
public void setReciver(String reciver) {
this.reciver = reciver;
}
@Column(DE.boolean_de)
public boolean isReaded() {
return readed;
}
public void setReaded(boolean readed) {
this.readed = readed;
}
@Column(DE.text_de)
public String getPid() {
return pid;
}
public void setPid(String pid) {
this.pid = pid;
}
@Column(DE.text_de)
public String getUid() {
return uid;
}
public void setUid(String uid) {
this.uid = uid;
}
@Column(DE.text_de)
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
@Column(DE.int_de)
public int getOpType() {
return opType;
}
public void setOpType(int opType) {
this.opType = opType;
}
}
|