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

cn.cliveyuan.robin.base.support.ReflectEntity Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
/*
 * Copyright (c) 2020  Clive Yuan ([email protected]).
 */

package cn.cliveyuan.robin.base.support;

import java.io.Serializable;
import java.util.List;

/**
 * 反射实体对象
 *
 * @author Clive Yuan
 * @date 2020/10/29
 */
public class ReflectEntity implements Serializable {

    private String simpleName;
    private String tableName;
    private List fields;
    private ReflectEntityHelper reflectEntityHelper;

    public String getTableName() {
        return tableName;
    }

    public void setTableName(String tableName) {
        this.tableName = tableName;
    }

    public List getFields() {
        return fields;
    }

    public void setFields(List fields) {
        this.fields = fields;
    }

    public String getSimpleName() {
        return simpleName;
    }

    public void setSimpleName(String simpleName) {
        this.simpleName = simpleName;
    }

    public ReflectEntityHelper getReflectEntityHelper() {
        return reflectEntityHelper;
    }

    public void setReflectEntityHelper(ReflectEntityHelper reflectEntityHelper) {
        this.reflectEntityHelper = reflectEntityHelper;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy