| | |
| | | |
| | | import com.alibaba.fastjson.JSONArray; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.java110.core.client.RestTemplate; |
| | | import com.java110.db.dao.IQueryServiceDAO; |
| | | import com.java110.utils.factory.ApplicationContextFactory; |
| | | import com.java110.utils.util.StringUtil; |
| | | import org.springframework.beans.BeansException; |
| | | import org.springframework.boot.SpringApplication; |
| | | import org.springframework.boot.web.client.RestTemplateBuilder; |
| | | import org.springframework.context.ApplicationContext; |
| | | import org.springframework.context.ApplicationContextAware; |
| | | import org.springframework.http.converter.StringHttpMessageConverter; |
| | | |
| | | import java.nio.charset.Charset; |
| | | |
| | | public class TableToJson { |
| | | |
| | | //show create table c_orders 用这个语句获取 |
| | | public static final String createTableSql = "CREATE TABLE `report_custom_component_condition` (\n" + |
| | | " `condition_id` varchar(30) NOT NULL COMMENT '条件ID',\n" + |
| | | " `component_id` varchar(30) NOT NULL COMMENT '组件ID',\n" + |
| | | " `name` varchar(64) NOT NULL COMMENT '名称',\n" + |
| | | " `holdpace` varchar(64) NOT NULL DEFAULT 'C' COMMENT '提示',\n" + |
| | | " `param` varchar(64) NOT NULL COMMENT '参数',\n" + |
| | | " `type` varchar(12) NOT NULL COMMENT '类型 input 输入框',\n" + |
| | | " `remark` varchar(512) DEFAULT NULL COMMENT '描述',\n" + |
| | | public static final String createTableSql = "CREATE TABLE `online_pay` (\n" + |
| | | " `pay_id` varchar(30) NOT NULL COMMENT '支付ID',\n" + |
| | | " `order_id` varchar(30) NOT NULL COMMENT '订单ID',\n" + |
| | | " `transaction_id` varchar(64) DEFAULT NULL COMMENT '交易ID',\n" + |
| | | " `app_id` varchar(64) DEFAULT NULL COMMENT '微信APPID',\n" + |
| | | " `mch_id` varchar(64) NOT NULL COMMENT '商户ID',\n" + |
| | | " `total_fee` decimal(10,2) NOT NULL COMMENT '付款总金额',\n" + |
| | | " `refund_fee` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '退款金额',\n" + |
| | | " `pay_name` varchar(256) DEFAULT NULL COMMENT '名称',\n" + |
| | | " `open_id` varchar(30) DEFAULT NULL COMMENT '开放ID',\n" + |
| | | " `state` varchar(12) NOT NULL DEFAULT 'W' COMMENT '状态 W待支付 C 支付完成 F 通知失败 WT 待退费 CT退费完成',\n" + |
| | | " `message` varchar(1024) DEFAULT NULL COMMENT '状态原因',\n" + |
| | | " `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',\n" + |
| | | " `status_cd` varchar(2) NOT NULL DEFAULT '0' COMMENT '数据状态,详细参考c_status表,S 保存,0, 在用 1失效'\n" + |
| | | " `status_cd` varchar(2) NOT NULL DEFAULT '0' COMMENT '数据状态,详细参考c_status表,0在用,1失效'\n" + |
| | | ")"; |
| | | |
| | | public static void main(String[] args) { |
| | | String desc = "报表组件条件"; |
| | | String id = "conditionId"; |
| | | String name = "reportCustomComponentCondition"; |
| | | String shareName = "report"; //生成到那个服务下 |
| | | String shareColumn = "condition_id"; |
| | | String shareParam = "conditionId"; |
| | | String desc = "线上支付"; |
| | | String id = "payId"; |
| | | String name = "onlinePay"; |
| | | String shareName = "acct"; //生成到那个服务下 |
| | | String shareColumn = "order_id"; |
| | | String shareParam = "orderId"; |
| | | //业务名称 desc 业务编码名称生成后类名 name 主键 id 需要放到那个服务 shareName |
| | | String newSql = createTableSql.substring(createTableSql.indexOf("(") + 1, createTableSql.lastIndexOf(")")); |
| | | String tableName = createTableSql.substring(createTableSql.indexOf("TABLE") + 5, createTableSql.indexOf("(")); |
| | |
| | | if ("KEY".equals(key)) { |
| | | continue; |
| | | } |
| | | if ("PRIMARY".equals(key)) { |
| | | continue; |
| | | } |
| | | if ("b_id".equals(key)) { |
| | | continue; |
| | | } |
| | |
| | | param.put("required", requireds); |
| | | System.out.println(param.toJSONString()); |
| | | } |
| | | |
| | | } |