29 lines
903 B
Plaintext
29 lines
903 B
Plaintext
package com.sercurityControl.proteam.dutyTask.mapper;
|
|
|
|
import com.sercurityControl.proteam.dutyTask.domain.AdmittedPersonEntity;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import java.util.List;
|
|
|
|
@Repository(value = "AdmittedPersonMapper")
|
|
public interface AdmittedPersonMapper {
|
|
|
|
/**
|
|
* @return java.util.List<com.sercurityControl.proteam.dutyTask.domain.AdmittedPersonEntity>
|
|
* @author cw chen
|
|
* @description 准入人员列表
|
|
* @Param entity
|
|
* @date 2023-05-18 14:52
|
|
*/
|
|
List<AdmittedPersonEntity> getAdmittedPersonList(AdmittedPersonEntity entity);
|
|
|
|
/**
|
|
* @return java.util.List<com.sercurityControl.proteam.dutyTask.domain.AdmittedPersonEntity>
|
|
* @author cw chen
|
|
* @description 获取人员照片
|
|
* @Param entity
|
|
* @date 2023-06-02 14:31
|
|
*/
|
|
List<AdmittedPersonEntity> getSGRYImgList(AdmittedPersonEntity entity);
|
|
}
|