All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.vonce.sql.bean.Insert Maven / Gradle / Ivy

There is a newer version: 1.7.0-beta1
Show newest version
package cn.vonce.sql.bean;

import java.io.Serializable;

/**
 * 插入
 *
 * @author Jovi
 * @version 1.0
 * @email [email protected]
 * @date 2017年8月18日上午9:00:19
 */
public class Insert extends Common implements Serializable {

    private Object insertBean = null;//插入的实体对象

    /**
     * 获取插入实体类
     *
     * @return
     */
    public Object getInsertBean() {
        return insertBean;
    }

    /**
     * 设置插入实体类
     *
     * @param insertBean
     */
    public void setInsertBean(Object insertBean) {
        this.insertBean = insertBean;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy