46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
package com.sercurityControl.decision.mapper;
|
|
|
|
import com.sercurityControl.decision.domain.qo.IntellQo;
|
|
import com.sercurityControl.decision.domain.qo.SgxcQo;
|
|
import com.sercurityControl.decision.domain.vo.IntellVo;
|
|
import com.sercurityControl.decision.domain.vo.NoWorkNoticeVo;
|
|
import com.sercurityControl.decision.domain.vo.SgxcVo;
|
|
import com.sercurityControl.decision.domain.vo.TeamSumVo;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 智能管控数据库访问层
|
|
*
|
|
* @author makejava
|
|
* @since 2022-12-06 14:31:54
|
|
*/
|
|
@Repository
|
|
public interface JjIntellMapper {
|
|
/**
|
|
* 查询智能管控照片不足数量
|
|
* @return
|
|
*/
|
|
TeamSumVo getPhotoTeamNum(@Param("num")Integer num, @Param("imageType")Integer imageType);
|
|
|
|
/**
|
|
* 分页查询
|
|
*
|
|
* @param intellQo 查询条件
|
|
* @return 实例对象
|
|
*/
|
|
List<IntellVo> queryByPage(IntellQo intellQo);
|
|
|
|
String getJjPhotoCode(String codeValue);
|
|
|
|
List<SgxcVo> querySgxcPage(SgxcQo sgxcQo);
|
|
|
|
Map<String, String> queryQjStatus();
|
|
|
|
List<NoWorkNoticeVo> queryQjDetail(SgxcQo sgxcQo);
|
|
}
|
|
|