This commit is contained in:
parent
5f18744949
commit
34ad04c82e
|
@ -92,7 +92,7 @@ public class Controller {
|
|||
|
||||
@GetMapping("capture")
|
||||
public Object capture(){
|
||||
monitorService.start();
|
||||
monitorService.construction();
|
||||
|
||||
return "finish capture";
|
||||
}
|
||||
|
@ -106,7 +106,7 @@ public class Controller {
|
|||
|
||||
@GetMapping("capture1")
|
||||
public Object capture1(){
|
||||
monitorService.listChannelPlayStates();
|
||||
monitorService.scenicSpotAndBathing();
|
||||
|
||||
return "finish capture";
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@ import com.baomidou.mybatisplus.annotation.TableName;
|
|||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@TableName("t_camera_channel_copy")
|
||||
@TableName("t_camera_channel")
|
||||
public class CameraChannel {
|
||||
|
||||
@TableId
|
||||
|
|
|
@ -5,7 +5,7 @@ import com.baomidou.mybatisplus.annotation.TableName;
|
|||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@TableName("t_camera_organization_copy")
|
||||
@TableName("t_camera_organization")
|
||||
public class CameraOrganization {
|
||||
@TableId
|
||||
private String id;
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
|
||||
<select id="selectRaise" resultType="com.hisense.monitormanage.dto.BuildingRecordsDto">
|
||||
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"/>
|
||||
limit #{page},#{pageSize}
|
||||
</select>
|
||||
|
|
Loading…
Reference in New Issue