47 lines
1.0 KiB
Plaintext
47 lines
1.0 KiB
Plaintext
package com.sercurityControl.decision.service;
|
|
|
|
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 java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 智能管控服务接口
|
|
*
|
|
* @author chenzc
|
|
* @since 2022-12-06 14:31:54
|
|
*/
|
|
public interface JjIntellService {
|
|
|
|
List<TeamSumVo> getPhotoTeamNum();
|
|
|
|
String getJjPhotoCode(String codeValue);
|
|
|
|
/**
|
|
* 分页查询
|
|
*
|
|
* @param intellQo 查询条件
|
|
* @return 查询结果
|
|
*/
|
|
List<IntellVo> queryByPage(IntellQo intellQo);
|
|
|
|
|
|
/**
|
|
* 分页查询
|
|
*
|
|
* @param intellQo 查询条件
|
|
* @return 查询结果
|
|
*/
|
|
List<SgxcVo> querySgxcPage(SgxcQo sgxcQo);
|
|
|
|
|
|
Map<String,String> queryQjStatus();
|
|
|
|
List<NoWorkNoticeVo> queryQjDetail(SgxcQo sgxcQo);
|
|
}
|