| | |
| | | |
| | | 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` (\n" + |
| | | " `custom_id` varchar(30) NOT NULL COMMENT '报表编号',\n" + |
| | | " `group_id` varchar(30) NOT NULL COMMENT '组编号',\n" + |
| | | " `title` varchar(64) NOT NULL COMMENT '选项标题',\n" + |
| | | " `seq` int(11) NOT NULL COMMENT '排序',\n" + |
| | | " `remark` varchar(512) DEFAULT NULL COMMENT '描述',\n" + |
| | | public static final String createTableSql = "CREATE TABLE `coupon_user_detail` (\n" + |
| | | " `uo_id` varchar(30) NOT NULL COMMENT '记录表',\n" + |
| | | " `coupon_id` varchar(30) NOT NULL COMMENT '优惠券ID',\n" + |
| | | " `coupon_name` varchar(64) NOT NULL COMMENT '优惠券名称',\n" + |
| | | " `user_id` varchar(30) NOT NULL COMMENT '用户ID',\n" + |
| | | " `user_name` varchar(64) NOT NULL COMMENT '用户名称',\n" + |
| | | " `obj_type` varchar(12) NOT NULL COMMENT '抵消对象类型 1001 物业费用 2002 临时停车费',\n" + |
| | | " `obj_id` varchar(30) NOT 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表,S 保存,0, 在用 1失效',\n" + |
| | | " PRIMARY KEY (`uo_id`)\n" + |
| | | ")"; |
| | | |
| | | public static void main(String[] args) { |
| | | String desc = "报表组件"; |
| | | String id = "customId"; |
| | | String name = "reportCustom"; |
| | | String shareName = "report"; //生成到那个服务下 |
| | | String shareColumn = "custom_id"; |
| | | String shareParam = "customId"; |
| | | |
| | | String desc = "用户抵消记录"; |
| | | String id = "uoId"; |
| | | String name = "couponUserDetail"; |
| | | String shareName = "acct"; //生成到那个服务下 |
| | | String shareColumn = "uo_id"; |
| | | String shareParam = "uoId"; |
| | | //业务名称 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()); |
| | | } |
| | | |
| | | } |