提交地图修改内容

This commit is contained in:
2022-08-18 15:06:18 +08:00
parent 61abbc251d
commit 36b76eabbe
10 changed files with 341 additions and 87 deletions

View File

@@ -0,0 +1,40 @@
package com.njcn.echarts.pojo.constant;
/**
* @author hongawen
* @version 1.0.0
* @date 2022年08月18日 10:39
*/
public interface PicCommonData {
/**
* 图形常见宽度
*/
Integer COMMON_ECHART_WIDTH = 714;
/**
* 图形常见高度
*/
Integer COMMON_ECHART_HEIGHT = 300;
/**
* word中图形常见宽度
*/
Integer COMMON_POI_WIDTH = 410;
/**
* word中图形常见高度
*/
Integer COMMON_POI_HEIGHT = 170;
/**
* word中地图常见高度
*/
Integer COMMON_POI_MAP_HEIGHT = 210;
}

View File

@@ -0,0 +1,27 @@
package com.njcn.echarts.pojo.enums;
import lombok.Getter;
/**
* @author hongawen
* @version 1.0.0
* @date 2021年12月20日 09:56
*/
@Getter
public enum EchartResponseEnum {
/**
* 画图模块异常响应码的范围:
*/
ECHART_COMMON_ERROR("A01001","后台远程绘制echart图异常")
;
private final String code;
private final String message;
EchartResponseEnum(String code, String message) {
this.code = code;
this.message = message;
}
}