
com.lindzh.mybatis.generator.bean.UniqueBean 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.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 唯一建,主键也是唯一键
* @author lindezhi
* 2015年11月14日 上午10:43:29
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class UniqueBean {
private String name;
private List columns = new ArrayList();
private boolean update;
private boolean select;
private boolean delete;
private List updateColumns = new ArrayList();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy