package com.java110.code; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.java110.utils.util.StringUtil; public class TableToJsonWeb { //show create table c_orders 用这个语句获取 public static final String createTableSql = "CREATE TABLE `fee_print_page` (\n" + " `page_id` varchar(30) NOT NULL COMMENT '页面ID',\n" + " `page_name` varchar(128) NOT NULL COMMENT '名称',\n" + " `community_id` varchar(30) NOT NULL COMMENT '小区ID',\n" + " `page_url` varchar(512) NOT NULL COMMENT '收据页面',\n" + " `state` varchar(12) NOT NULL DEFAULT 'F' COMMENT '状态 T 有效 F为无效',\n" + " `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',\n" + " `status_cd` varchar(2) NOT NULL DEFAULT '0' COMMENT '数据状态 1表示 失效 0 有效'\n" + ")"; public static void main(String[] args) { // templateName 业务名称 业务编码名称生成后文件名 templateCode 主键 templateKey // 业务主键名称 templateKeyName=templateName+ID 主机驼峰 searchCode 主键名称 searchName // directories 放在前端那个目录下 String newSql = createTableSql.substring(createTableSql.indexOf("(") + 1, createTableSql.lastIndexOf(")")); String tableName = createTableSql.substring(createTableSql.indexOf("TABLE") + 5, createTableSql.indexOf("(")); tableName = tableName.replaceAll("`", "").trim(); newSql = newSql.replaceAll("\n", ""); String[] rowSqls = newSql.split("',"); JSONObject param = new JSONObject(); param.put("templateName", ""); param.put("templateCode", ""); param.put("templateKey", ""); param.put("templateKeyName", ""); param.put("searchCode", ""); param.put("searchName", ""); param.put("directories", ""); JSONObject paramColumn = null; JSONArray conditions = new JSONArray(); JSONArray paramColumns = new JSONArray(); JSONObject condition = null; String key = ""; for (String rowSql : rowSqls) { condition = new JSONObject(); paramColumn = new JSONObject(); key = rowSql.trim(); key = key.substring(0, key.indexOf(" ")); key = key.replaceAll("`", ""); if ("UNIQUE".equals(key)) { continue; } if ("KEY".equals(key)) { continue; } if ("b_id".equals(key)) { continue; } if ("create_time".equals(key)) { continue; } String comment = rowSql.contains("COMMENT") ? rowSql.substring(rowSql.indexOf("COMMENT '") + 9) : StringUtil.lineToHump(key); comment = comment.trim(); if(comment.contains(",")){ comment = comment.split(",")[0]; } if(comment.contains(" ")){ comment = comment.split(" ")[0]; } paramColumn.put("desc", comment); if (rowSql.toLowerCase().contains("not null")) { condition.put("name", comment); condition.put("inputType", "input"); condition.put("code", StringUtil.lineToHump(key)); condition.put("whereCondition", "equal"); conditions.add(condition); paramColumn.put("desc", "必填,"+comment); } String limit = rowSql.substring(rowSql.indexOf("(") + 1,rowSql.indexOf(")")); if(limit.contains(",")){ limit = limit.split(",")[0]; } paramColumn.put("code", StringUtil.lineToHump(key)); paramColumn.put("cnCode", comment); paramColumn.put("required", true); paramColumn.put("hasDefaultValue", false); paramColumn.put("inputType", "input"); paramColumn.put("limit", "maxLength"); paramColumn.put("limitParam",limit ); paramColumn.put("limitErrInfo", comment+"不能超过"+limit); paramColumn.put("show", true); paramColumns.add(paramColumn); } param.put("columns", paramColumns); param.put("conditions", conditions); System.out.println(param.toJSONString()); } }