This commit is contained in:
wuweida 2022-07-04 16:19:51 +08:00
parent 5f18744949
commit 34ad04c82e
4 changed files with 5 additions and 5 deletions

View File

@ -92,7 +92,7 @@ public class Controller {
@GetMapping("capture") @GetMapping("capture")
public Object capture(){ public Object capture(){
monitorService.start(); monitorService.construction();
return "finish capture"; return "finish capture";
} }
@ -106,7 +106,7 @@ public class Controller {
@GetMapping("capture1") @GetMapping("capture1")
public Object capture1(){ public Object capture1(){
monitorService.listChannelPlayStates(); monitorService.scenicSpotAndBathing();
return "finish capture"; return "finish capture";
} }

View File

@ -5,7 +5,7 @@ import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data; import lombok.Data;
@Data @Data
@TableName("t_camera_channel_copy") @TableName("t_camera_channel")
public class CameraChannel { public class CameraChannel {
@TableId @TableId

View File

@ -5,7 +5,7 @@ import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data; import lombok.Data;
@Data @Data
@TableName("t_camera_organization_copy") @TableName("t_camera_organization")
public class CameraOrganization { public class CameraOrganization {
@TableId @TableId
private String id; private String id;

View File

@ -32,7 +32,7 @@
<select id="selectRaise" resultType="com.hisense.monitormanage.dto.BuildingRecordsDto"> <select id="selectRaise" resultType="com.hisense.monitormanage.dto.BuildingRecordsDto">
select * from t_building_records br JOIN t_building_new_site bs select * from t_building_records br JOIN t_building_new_site bs
ON br.project_name = bs.gdmc where br.pm10 > 150 ON br.project_name = bs.gdmc where br.pm10 > 80
<bind name="page" value="(page-1)*pageSize"/> <bind name="page" value="(page-1)*pageSize"/>
limit #{page},#{pageSize} limit #{page},#{pageSize}
</select> </select>