Files
mosty-dyga-cloud/mosty-spxl/src/main/java/com/mosty/spxl/service/TbSpxlSpxlfaSxtService.java
esacpe b80c560e87 1
2024-07-17 21:00:42 +08:00

26 lines
695 B
Java

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);
}