|
@@ -5,6 +5,9 @@ import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
+
|
|
|
+import com.boman.common.core.constant.UserConstants;
|
|
|
+import com.boman.common.core.utils.SecurityUtils;
|
|
|
import org.apache.commons.io.IOUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
@@ -30,13 +33,12 @@ import com.boman.gen.service.IGenTableService;
|
|
|
|
|
|
/**
|
|
|
* 代码生成 操作处理
|
|
|
- *
|
|
|
+ *
|
|
|
* @author ruoyi
|
|
|
*/
|
|
|
@RequestMapping("/gen")
|
|
|
@RestController
|
|
|
-public class GenController extends BaseController
|
|
|
-{
|
|
|
+public class GenController extends BaseController {
|
|
|
@Autowired
|
|
|
private IGenTableService genTableService;
|
|
|
|
|
@@ -48,8 +50,7 @@ public class GenController extends BaseController
|
|
|
*/
|
|
|
@PreAuthorize(hasPermi = "tool:gen:list")
|
|
|
@GetMapping("/list")
|
|
|
- public TableDataInfo genList(GenTable genTable)
|
|
|
- {
|
|
|
+ public TableDataInfo genList(GenTable genTable) {
|
|
|
startPage();
|
|
|
List<GenTable> list = genTableService.selectGenTableList(genTable);
|
|
|
return getDataTable(list);
|
|
@@ -60,15 +61,14 @@ public class GenController extends BaseController
|
|
|
*/
|
|
|
@PreAuthorize(hasPermi = "tool:gen:query")
|
|
|
@GetMapping(value = "/{talbleId}")
|
|
|
- public AjaxResult getInfo(@PathVariable Long talbleId)
|
|
|
- {
|
|
|
+ public AjaxResult getInfo(@PathVariable Long talbleId) {
|
|
|
GenTable table = genTableService.selectGenTableById(talbleId);
|
|
|
List<GenTable> tables = genTableService.selectGenTableAll();
|
|
|
List<GenTableColumn> list = genTableColumnService.selectGenTableColumnListByTableId(talbleId);
|
|
|
Map<String, Object> map = new HashMap<String, Object>();
|
|
|
- map.put("info", table);
|
|
|
- map.put("rows", list);
|
|
|
- map.put("tables", tables);
|
|
|
+ map.put("info" , table);
|
|
|
+ map.put("rows" , list);
|
|
|
+ map.put("tables" , tables);
|
|
|
return AjaxResult.success(map);
|
|
|
}
|
|
|
|
|
@@ -77,8 +77,7 @@ public class GenController extends BaseController
|
|
|
*/
|
|
|
@PreAuthorize(hasPermi = "tool:gen:list")
|
|
|
@GetMapping("/db/list")
|
|
|
- public TableDataInfo dataList(GenTable genTable)
|
|
|
- {
|
|
|
+ public TableDataInfo dataList(GenTable genTable) {
|
|
|
startPage();
|
|
|
List<GenTable> list = genTableService.selectDbTableList(genTable);
|
|
|
return getDataTable(list);
|
|
@@ -88,8 +87,7 @@ public class GenController extends BaseController
|
|
|
* 查询数据表字段列表
|
|
|
*/
|
|
|
@GetMapping(value = "/column/{talbleId}")
|
|
|
- public TableDataInfo columnList(Long tableId)
|
|
|
- {
|
|
|
+ public TableDataInfo columnList(Long tableId) {
|
|
|
TableDataInfo dataInfo = new TableDataInfo();
|
|
|
List<GenTableColumn> list = genTableColumnService.selectGenTableColumnListByTableId(tableId);
|
|
|
dataInfo.setRows(list);
|
|
@@ -101,10 +99,9 @@ public class GenController extends BaseController
|
|
|
* 导入表结构(保存)
|
|
|
*/
|
|
|
@PreAuthorize(hasPermi = "tool:gen:list")
|
|
|
- @Log(title = "代码生成", businessType = BusinessType.IMPORT)
|
|
|
+ @Log(title = "代码生成" , businessType = BusinessType.IMPORT)
|
|
|
@PostMapping("/importTable")
|
|
|
- public AjaxResult importTableSave(String tables)
|
|
|
- {
|
|
|
+ public AjaxResult importTableSave(String tables) {
|
|
|
String[] tableNames = Convert.toStrArray(tables);
|
|
|
// 查询表信息
|
|
|
List<GenTable> tableList = genTableService.selectDbTableListByNames(tableNames);
|
|
@@ -116,10 +113,9 @@ public class GenController extends BaseController
|
|
|
* 修改保存代码生成业务
|
|
|
*/
|
|
|
@PreAuthorize(hasPermi = "tool:gen:edit")
|
|
|
- @Log(title = "代码生成", businessType = BusinessType.UPDATE)
|
|
|
+ @Log(title = "代码生成" , businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
- public AjaxResult editSave(@Validated @RequestBody GenTable genTable)
|
|
|
- {
|
|
|
+ public AjaxResult editSave(@Validated @RequestBody GenTable genTable) {
|
|
|
genTableService.validateEdit(genTable);
|
|
|
genTableService.updateGenTable(genTable);
|
|
|
return AjaxResult.success();
|
|
@@ -129,10 +125,9 @@ public class GenController extends BaseController
|
|
|
* 删除代码生成
|
|
|
*/
|
|
|
@PreAuthorize(hasPermi = "tool:gen:remove")
|
|
|
- @Log(title = "代码生成", businessType = BusinessType.DELETE)
|
|
|
+ @Log(title = "代码生成" , businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{tableIds}")
|
|
|
- public AjaxResult remove(@PathVariable Long[] tableIds)
|
|
|
- {
|
|
|
+ public AjaxResult remove(@PathVariable Long[] tableIds) {
|
|
|
genTableService.deleteGenTableByIds(tableIds);
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
@@ -142,8 +137,7 @@ public class GenController extends BaseController
|
|
|
*/
|
|
|
@PreAuthorize(hasPermi = "tool:gen:preview")
|
|
|
@GetMapping("/preview/{tableId}")
|
|
|
- public AjaxResult preview(@PathVariable("tableId") Long tableId) throws IOException
|
|
|
- {
|
|
|
+ public AjaxResult preview(@PathVariable("tableId") Long tableId) throws IOException {
|
|
|
Map<String, String> dataMap = genTableService.previewCode(tableId);
|
|
|
return AjaxResult.success(dataMap);
|
|
|
}
|
|
@@ -152,10 +146,9 @@ public class GenController extends BaseController
|
|
|
* 生成代码(下载方式)
|
|
|
*/
|
|
|
@PreAuthorize(hasPermi = "tool:gen:code")
|
|
|
- @Log(title = "代码生成", businessType = BusinessType.GENCODE)
|
|
|
+ @Log(title = "代码生成" , businessType = BusinessType.GENCODE)
|
|
|
@GetMapping("/download/{tableName}")
|
|
|
- public void download(HttpServletResponse response, @PathVariable("tableName") String tableName) throws IOException
|
|
|
- {
|
|
|
+ public void download(HttpServletResponse response, @PathVariable("tableName") String tableName) throws IOException {
|
|
|
byte[] data = genTableService.downloadCode(tableName);
|
|
|
genCode(response, data);
|
|
|
}
|
|
@@ -164,10 +157,9 @@ public class GenController extends BaseController
|
|
|
* 生成代码(自定义路径)
|
|
|
*/
|
|
|
@PreAuthorize(hasPermi = "tool:gen:code")
|
|
|
- @Log(title = "代码生成", businessType = BusinessType.GENCODE)
|
|
|
+ @Log(title = "代码生成" , businessType = BusinessType.GENCODE)
|
|
|
@GetMapping("/genCode/{tableName}")
|
|
|
- public AjaxResult genCode(@PathVariable("tableName") String tableName)
|
|
|
- {
|
|
|
+ public AjaxResult genCode(@PathVariable("tableName") String tableName) {
|
|
|
genTableService.generatorCode(tableName);
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
@@ -176,10 +168,9 @@ public class GenController extends BaseController
|
|
|
* 同步数据库
|
|
|
*/
|
|
|
@PreAuthorize(hasPermi = "tool:gen:edit")
|
|
|
- @Log(title = "代码生成", businessType = BusinessType.UPDATE)
|
|
|
+ @Log(title = "代码生成" , businessType = BusinessType.UPDATE)
|
|
|
@GetMapping("/synchDb/{tableName}")
|
|
|
- public AjaxResult synchDb(@PathVariable("tableName") String tableName)
|
|
|
- {
|
|
|
+ public AjaxResult synchDb(@PathVariable("tableName") String tableName) {
|
|
|
genTableService.synchDb(tableName);
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
@@ -188,10 +179,9 @@ public class GenController extends BaseController
|
|
|
* 批量生成代码
|
|
|
*/
|
|
|
@PreAuthorize(hasPermi = "tool:gen:code")
|
|
|
- @Log(title = "代码生成", businessType = BusinessType.GENCODE)
|
|
|
+ @Log(title = "代码生成" , businessType = BusinessType.GENCODE)
|
|
|
@GetMapping("/batchGenCode")
|
|
|
- public void batchGenCode(HttpServletResponse response, String tables) throws IOException
|
|
|
- {
|
|
|
+ public void batchGenCode(HttpServletResponse response, String tables) throws IOException {
|
|
|
String[] tableNames = Convert.toStrArray(tables);
|
|
|
byte[] data = genTableService.downloadCode(tableNames);
|
|
|
genCode(response, data);
|
|
@@ -200,12 +190,22 @@ public class GenController extends BaseController
|
|
|
/**
|
|
|
* 生成zip文件
|
|
|
*/
|
|
|
- private void genCode(HttpServletResponse response, byte[] data) throws IOException
|
|
|
- {
|
|
|
+ private void genCode(HttpServletResponse response, byte[] data) throws IOException {
|
|
|
response.reset();
|
|
|
- response.setHeader("Content-Disposition", "attachment; filename=\"ruoyi.zip\"");
|
|
|
- response.addHeader("Content-Length", "" + data.length);
|
|
|
+ response.setHeader("Content-Disposition" , "attachment; filename=\"boMan.zip\"");
|
|
|
+ response.addHeader("Content-Length" , "" + data.length);
|
|
|
response.setContentType("application/octet-stream; charset=UTF-8");
|
|
|
IOUtils.write(data, response.getOutputStream());
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @Description 代码生成增加新增功能
|
|
|
+ * @Author: tjf
|
|
|
+ * @Date: 2021/3/24
|
|
|
+ */
|
|
|
+ @PostMapping
|
|
|
+ public AjaxResult add(@Validated @RequestBody GenTable genTable) {
|
|
|
+ return genTableService.insertGenTable(genTable);
|
|
|
+ }
|
|
|
}
|