摘要: tooltip: { trigger: 'axis', formatter(params) { let firstParams = params[0]; let sndParams = params[1]; //显示的小圆点 let firstHtml = '<span style="display 阅读全文
posted @ 2020-07-13 12:15 卟萌 阅读(1045) 评论(0) 推荐(0) 编辑
摘要: theme = { // 全图默认背景 // backgroundColor: 'rgba(0,0,0,0)', // 默认色板 color: ['#ff7f50','#87cefa','#da70d6','#32cd32','#6495ed', '#ff69b4','#ba55d3','#cd5c 阅读全文
posted @ 2020-07-06 11:44 卟萌 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 上代码 使用 阅读全文
posted @ 2019-10-16 15:27 卟萌 阅读(1428) 评论(0) 推荐(0) 编辑
摘要: 这样的json数据转换成sql语句 解决办法 测试 public static void main(String[] args) { String insert = "{\"table\":\"GG.TCUSTORD\",\"op_type\":\"I\",\"op_ts\":\"2013-06-0 阅读全文
posted @ 2019-10-12 16:14 卟萌 阅读(1286) 评论(0) 推荐(0) 编辑
摘要: 一、@Api 用在请求的类上,表示对类的说明 常用参数: 其他参数: 示例: 二、@ApiOperation 用在请求的方法上,说明方法的用途、作用 常用参数: 其他参数: 示例: 三、@ApiImplicitParams 用在请求的方法上,表示一组参数说明 @ApiImplicitParam:用在 阅读全文
posted @ 2019-09-23 14:13 卟萌 阅读(703) 评论(0) 推荐(0) 编辑
摘要: 一、在Maven中添加依赖 三、Swagger2注解的使用 @Api:用在类上,说明该类的作用。 @ApiOperation:注解来给API增加方法说明。 @ApiImplicitParams : 用在方法上包含一组参数说明。 @ApiImplicitParam:用来注解来给方法入参增加说明。 @A 阅读全文
posted @ 2019-09-16 17:02 卟萌 阅读(133) 评论(0) 推荐(0) 编辑