package cn.stylefeng.guns.gen.modular.model.params; import lombok.Data; /** * 执行生成的参数接受类 * * @author stylefeng * @date 2020/1/14 */ @Data public class ExecuteParam { public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public String getProPackage() { return proPackage; } public void setProPackage(String proPackage) { this.proPackage = proPackage; } public String getRemovePrefix() { return removePrefix; } public void setRemovePrefix(String removePrefix) { this.removePrefix = removePrefix; } public Long getDataSourceId() { return dataSourceId; } public void setDataSourceId(Long dataSourceId) { this.dataSourceId = dataSourceId; } public String getTables() { return tables; } public void setTables(String tables) { this.tables = tables; } public String getModularName() { return modularName; } public void setModularName(String modularName) { this.modularName = modularName; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } public String getSwagger() { return swagger; } public void setSwagger(String swagger) { this.swagger = swagger; } public String getRemote() { return remote; } public void setRemote(String remote) { this.remote = remote; } public String getJumpTypeStr() { return jumpTypeStr; } public void setJumpTypeStr(String jumpTypeStr) { this.jumpTypeStr = jumpTypeStr; } public String getGenLocation() { return genLocation; } public void setGenLocation(String genLocation) { this.genLocation = genLocation; } private String author; private String proPackage; private String removePrefix; private Long dataSourceId; private String tables; private String modularName; private String version; private String swagger; private String remote; private String jumpTypeStr; private String genLocation; }