BasePushMsg.java 2.75 KB
package com.rnt.model.zf.base;

import com.jfinal.plugin.activerecord.Model;
import com.jfinal.plugin.activerecord.IBean;

/**
 * Generated by JFinal, do not modify this file.
 */
@SuppressWarnings({"serial", "unchecked"})
public abstract class BasePushMsg<M extends BasePushMsg<M>> extends Model<M> implements IBean {

	public M setId(java.lang.Long id) {
		set("id", id);
		return (M)this;
	}

	public java.lang.Long getId() {
		return get("id");
	}

	public M setCustId(java.lang.String custId) {
		set("cust_id", custId);
		return (M)this;
	}

	public java.lang.String getCustId() {
		return get("cust_id");
	}

	public M setMsgTitle(java.lang.String msgTitle) {
		set("msg_title", msgTitle);
		return (M)this;
	}

	public java.lang.String getMsgTitle() {
		return get("msg_title");
	}

	public M setMsgContent(java.lang.String msgContent) {
		set("msg_content", msgContent);
		return (M)this;
	}

	public java.lang.String getMsgContent() {
		return get("msg_content");
	}

	public M setMsgType(java.lang.Integer msgType) {
		set("msg_type", msgType);
		return (M)this;
	}

	public java.lang.Integer getMsgType() {
		return get("msg_type");
	}

	public M setTempleteId(java.lang.String templeteId) {
		set("templete_id", templeteId);
		return (M)this;
	}

	public java.lang.String getTempleteId() {
		return get("templete_id");
	}

	public M setPushType(java.lang.Integer pushType) {
		set("push_type", pushType);
		return (M)this;
	}

	public java.lang.Integer getPushType() {
		return get("push_type");
	}

	public M setReturnType(java.lang.Integer returnType) {
		set("return_type", returnType);
		return (M)this;
	}

	public java.lang.Integer getReturnType() {
		return get("return_type");
	}

	public M setReadType(java.lang.Integer readType) {
		set("read_type", readType);
		return (M)this;
	}

	public java.lang.Integer getReadType() {
		return get("read_type");
	}

	public M setDataState(java.lang.Integer dataState) {
		set("data_state", dataState);
		return (M)this;
	}

	public java.lang.Integer getDataState() {
		return get("data_state");
	}

	public M setCreateEmpid(java.lang.String createEmpid) {
		set("create_empid", createEmpid);
		return (M)this;
	}

	public java.lang.String getCreateEmpid() {
		return get("create_empid");
	}

	public M setCreateDate(java.util.Date createDate) {
		set("create_date", createDate);
		return (M)this;
	}

	public java.util.Date getCreateDate() {
		return get("create_date");
	}

	public M setModfiyEmpid(java.lang.String modfiyEmpid) {
		set("modfiy_empid", modfiyEmpid);
		return (M)this;
	}

	public java.lang.String getModfiyEmpid() {
		return get("modfiy_empid");
	}

	public M setModfiyDate(java.util.Date modfiyDate) {
		set("modfiy_date", modfiyDate);
		return (M)this;
	}

	public java.util.Date getModfiyDate() {
		return get("modfiy_date");
	}

}