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 BaseParkingLotGeo> extends Model implements IBean { public M setGeoId(java.lang.Long geoId) { set("geo_id", geoId); return (M)this; } public java.lang.Long getGeoId() { return get("geo_id"); } public M setLonId(java.math.BigDecimal lonId) { set("lon_id", lonId); return (M)this; } public java.math.BigDecimal getLonId() { return get("lon_id"); } public M setLatId(java.math.BigDecimal latId) { set("lat_id", latId); return (M)this; } public java.math.BigDecimal getLatId() { return get("lat_id"); } public M setGeoNo(java.lang.String geoNo) { set("geo_no", geoNo); return (M)this; } public java.lang.String getGeoNo() { return get("geo_no"); } public M setGeoName(java.lang.String geoName) { set("geo_name", geoName); return (M)this; } public java.lang.String getGeoName() { return get("geo_name"); } public M setGeoType(java.lang.Integer geoType) { set("geo_type", geoType); return (M)this; } public java.lang.Integer getGeoType() { return get("geo_type"); } 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 setDataStatus(java.lang.Integer dataStatus) { set("data_status", dataStatus); return (M)this; } public java.lang.Integer getDataStatus() { return get("data_status"); } public M setCreateTime(java.util.Date createTime) { set("create_time", createTime); return (M)this; } public java.util.Date getCreateTime() { return get("create_time"); } public M setCreateOp(java.lang.Long createOp) { set("create_op", createOp); return (M)this; } public java.lang.Long getCreateOp() { return get("create_op"); } public M setModiftyTime(java.util.Date modiftyTime) { set("modifty_time", modiftyTime); return (M)this; } public java.util.Date getModiftyTime() { return get("modifty_time"); } public M setModiftyOp(java.lang.Long modiftyOp) { set("modifty_op", modiftyOp); return (M)this; } public java.lang.Long getModiftyOp() { return get("modifty_op"); } }