983b9694 张雷

孪生体点位数据接口修改

1 个父辈 4d8aad74
......@@ -97,6 +97,10 @@ public class FmRoamPoint {
@Excel(name = "导览点描述", width = 15)
@ApiModelProperty(value = "导览点描述")
private java.lang.String remark;
/**镜头焦距*/
@Excel(name = "镜头焦距", width = 15)
@ApiModelProperty(value = "镜头焦距")
private java.lang.String cameraFieldOfView;
/**创建人*/
@Excel(name = "创建人", width = 15)
@ApiModelProperty(value = "创建人")
......
......@@ -43,6 +43,7 @@ public class FmRoamPointServiceImpl extends ServiceImpl<FmRoamPointMapper, FmRoa
fmRoamPoint.setPointPanelSleepTime(fmRoamPointVO.getPointPanelSleepTime());
fmRoamPoint.setPointSort(fmRoamPointVO.getPointSort());
fmRoamPoint.setRemark(fmRoamPointVO.getRemark());
fmRoamPoint.setCameraFieldOfView(fmRoamPointVO.getCameraFieldOfView());
return fmRoamPoint;
}
......
package com.skua.modules.roam.vo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;
/**
* 自动漫游导览点表
......@@ -36,5 +38,7 @@ public class FmRoamPointVO {
private java.lang.Integer pointSort;
/**导览点描述*/
private java.lang.String remark;
/**镜头焦距*/
private java.lang.String cameraFieldOfView;
}
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!