
com.lindzh.mybatis.generator.bean.MybatisPojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-generator Show documentation
Show all versions of mybatis-generator Show documentation
MybatisGenerator is a xml ,sql and dao generator from java beans.
The newest version!
package com.lindzh.mybatis.generator.bean;
import java.util.ArrayList;
import java.util.List;
import lombok.Data;
/**
*
* @author lindezhi
* 2015年11月14日 上午10:37:00
*/
@Data
public class MybatisPojo {
private String daoPackage;
private String beanPackage;
private String xmlLocation;
private String daoClassName;
private String classSimpleName;
private String namespace;
private String className;
private String table;
private String beanMapper;
private boolean autoGenerate;
private ColumnBean primary;
private String time;
private List columns = new ArrayList();
private List uniques = new ArrayList();
private List indexes = new ArrayList();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy