This commit is contained in:
esacpe
2024-07-17 21:00:42 +08:00
commit b80c560e87
1931 changed files with 163526 additions and 0 deletions

View File

@ -0,0 +1,25 @@
package com.mosty.spxl.service;
import com.mosty.base.model.dto.spxl.TbSpxlSpxlfaInsertDto;
import com.mosty.base.model.entity.spxl.TbSpxlSpxlfa;
import io.swagger.annotations.ApiOperation;
/**
* @author dw
* @since 2022/7/11
* 视频巡逻方案-摄像头服务
**/
public interface TbSpxlSpxlfaSxtService {
@ApiOperation("添加摄像头配置信息")
int insertEntity(TbSpxlSpxlfaInsertDto dto);
@ApiOperation("修改摄像头配置信息")
int updateSxtPz(TbSpxlSpxlfaInsertDto dto);
@ApiOperation("删除方案的所有的配置信息")
void deleteFaPz(String faid);
@ApiOperation("查询摄像头配置信息")
TbSpxlSpxlfa pzInfo(String faid);
}