孪生体点位数据接口修改
正在显示
3 个修改的文件
包含
9 行增加
和
0 行删除
... | @@ -97,6 +97,10 @@ public class FmRoamPoint { | ... | @@ -97,6 +97,10 @@ public class FmRoamPoint { |
97 | @Excel(name = "导览点描述", width = 15) | 97 | @Excel(name = "导览点描述", width = 15) |
98 | @ApiModelProperty(value = "导览点描述") | 98 | @ApiModelProperty(value = "导览点描述") |
99 | private java.lang.String remark; | 99 | private java.lang.String remark; |
100 | /**镜头焦距*/ | ||
101 | @Excel(name = "镜头焦距", width = 15) | ||
102 | @ApiModelProperty(value = "镜头焦距") | ||
103 | private java.lang.String cameraFieldOfView; | ||
100 | /**创建人*/ | 104 | /**创建人*/ |
101 | @Excel(name = "创建人", width = 15) | 105 | @Excel(name = "创建人", width = 15) |
102 | @ApiModelProperty(value = "创建人") | 106 | @ApiModelProperty(value = "创建人") | ... | ... |
... | @@ -43,6 +43,7 @@ public class FmRoamPointServiceImpl extends ServiceImpl<FmRoamPointMapper, FmRoa | ... | @@ -43,6 +43,7 @@ public class FmRoamPointServiceImpl extends ServiceImpl<FmRoamPointMapper, FmRoa |
43 | fmRoamPoint.setPointPanelSleepTime(fmRoamPointVO.getPointPanelSleepTime()); | 43 | fmRoamPoint.setPointPanelSleepTime(fmRoamPointVO.getPointPanelSleepTime()); |
44 | fmRoamPoint.setPointSort(fmRoamPointVO.getPointSort()); | 44 | fmRoamPoint.setPointSort(fmRoamPointVO.getPointSort()); |
45 | fmRoamPoint.setRemark(fmRoamPointVO.getRemark()); | 45 | fmRoamPoint.setRemark(fmRoamPointVO.getRemark()); |
46 | fmRoamPoint.setCameraFieldOfView(fmRoamPointVO.getCameraFieldOfView()); | ||
46 | return fmRoamPoint; | 47 | return fmRoamPoint; |
47 | } | 48 | } |
48 | 49 | ... | ... |
1 | package com.skua.modules.roam.vo; | 1 | package com.skua.modules.roam.vo; |
2 | 2 | ||
3 | import io.swagger.annotations.ApiModelProperty; | ||
3 | import lombok.Data; | 4 | import lombok.Data; |
5 | import org.jeecgframework.poi.excel.annotation.Excel; | ||
4 | 6 | ||
5 | /** | 7 | /** |
6 | * 自动漫游导览点表 | 8 | * 自动漫游导览点表 |
... | @@ -36,5 +38,7 @@ public class FmRoamPointVO { | ... | @@ -36,5 +38,7 @@ public class FmRoamPointVO { |
36 | private java.lang.Integer pointSort; | 38 | private java.lang.Integer pointSort; |
37 | /**导览点描述*/ | 39 | /**导览点描述*/ |
38 | private java.lang.String remark; | 40 | private java.lang.String remark; |
41 | /**镜头焦距*/ | ||
42 | private java.lang.String cameraFieldOfView; | ||
39 | 43 | ||
40 | } | 44 | } | ... | ... |
-
请 注册 或 登录 后发表评论