BaseParkFreeBerth.java 1.46 KB
package com.rnt.model.park.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 BaseParkFreeBerth<M extends BaseParkFreeBerth<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 setPlId(java.lang.Long plId) {
		set("pl_id", plId);
		return (M)this;
	}

	public java.lang.Long getPlId() {
		return get("pl_id");
	}

	public M setPlName(java.lang.String plName) {
		set("pl_name", plName);
		return (M)this;
	}

	public java.lang.String getPlName() {
		return get("pl_name");
	}

	public M setPlNo(java.lang.String plNo) {
		set("pl_no", plNo);
		return (M)this;
	}

	public java.lang.String getPlNo() {
		return get("pl_no");
	}

	public M setFreeBerth(java.lang.Integer freeBerth) {
		set("free_berth", freeBerth);
		return (M)this;
	}

	public java.lang.Integer getFreeBerth() {
		return get("free_berth");
	}

	public M setDataStatus(java.lang.Integer dataStatus) {
		set("data_status", dataStatus);
		return (M)this;
	}

	public java.lang.Integer getDataStatus() {
		return get("data_status");
	}

	public M setModiftyTime(java.util.Date modiftyTime) {
		set("modifty_time", modiftyTime);
		return (M)this;
	}

	public java.util.Date getModiftyTime() {
		return get("modifty_time");
	}

}