BaseCloudsBillDay.java 4 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 BaseCloudsBillDay<M extends BaseCloudsBillDay<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 setOrderId(java.lang.String orderId) {
		set("order_id", orderId);
		return (M)this;
	}

	public java.lang.String getOrderId() {
		return get("order_id");
	}

	public M setOrderType(java.lang.Integer orderType) {
		set("order_type", orderType);
		return (M)this;
	}

	public java.lang.Integer getOrderType() {
		return get("order_type");
	}

	public M setParkId(java.lang.String parkId) {
		set("park_id", parkId);
		return (M)this;
	}

	public java.lang.String getParkId() {
		return get("park_id");
	}

	public M setParkName(java.lang.String parkName) {
		set("park_name", parkName);
		return (M)this;
	}

	public java.lang.String getParkName() {
		return get("park_name");
	}

	public M setAliTotalFee(java.math.BigDecimal aliTotalFee) {
		set("ali_total_fee", aliTotalFee);
		return (M)this;
	}

	public java.math.BigDecimal getAliTotalFee() {
		return get("ali_total_fee");
	}

	public M setAliDealCount(java.lang.Integer aliDealCount) {
		set("ali_deal_count", aliDealCount);
		return (M)this;
	}

	public java.lang.Integer getAliDealCount() {
		return get("ali_deal_count");
	}

	public M setWxTotalFee(java.math.BigDecimal wxTotalFee) {
		set("wx_total_fee", wxTotalFee);
		return (M)this;
	}

	public java.math.BigDecimal getWxTotalFee() {
		return get("wx_total_fee");
	}

	public M setWxDealCount(java.lang.Integer wxDealCount) {
		set("wx_deal_count", wxDealCount);
		return (M)this;
	}

	public java.lang.Integer getWxDealCount() {
		return get("wx_deal_count");
	}

	public M setCashTotalFee(java.math.BigDecimal cashTotalFee) {
		set("cash_total_fee", cashTotalFee);
		return (M)this;
	}

	public java.math.BigDecimal getCashTotalFee() {
		return get("cash_total_fee");
	}

	public M setCashDealCount(java.lang.Integer cashDealCount) {
		set("cash_deal_count", cashDealCount);
		return (M)this;
	}

	public java.lang.Integer getCashDealCount() {
		return get("cash_deal_count");
	}

	public M setOrderTotalFee(java.math.BigDecimal orderTotalFee) {
		set("order_total_fee", orderTotalFee);
		return (M)this;
	}

	public java.math.BigDecimal getOrderTotalFee() {
		return get("order_total_fee");
	}

	public M setOrderDealCount(java.lang.Integer orderDealCount) {
		set("order_deal_count", orderDealCount);
		return (M)this;
	}

	public java.lang.Integer getOrderDealCount() {
		return get("order_deal_count");
	}

	public M setBillDayTime(java.util.Date billDayTime) {
		set("bill_day_time", billDayTime);
		return (M)this;
	}

	public java.util.Date getBillDayTime() {
		return get("bill_day_time");
	}

	public M setRemark(java.lang.String remark) {
		set("remark", remark);
		return (M)this;
	}

	public java.lang.String getRemark() {
		return get("remark");
	}

	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");
	}

}