32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
package com.sercurityControl.proteam.callInterface.mapper;
|
|
|
|
import com.sercurityControl.proteam.callInterface.domain.TeamEvaDto;
|
|
import com.sercurityControl.proteam.callInterface.domain.TeamEvaVo;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
@Repository(value = "CallInterfaceMapper")
|
|
public interface CallInterfaceMapper {
|
|
/**
|
|
* @return java.util.List<com.sercurityControl.proteam.callInterface.domain.TeamEvaBean>
|
|
* @author cw chen
|
|
* @description 获取班组评价数据
|
|
* @Param bean
|
|
* @date 2023-06-06 10:58
|
|
*/
|
|
List<TeamEvaVo> getProInfoList(TeamEvaDto bean);
|
|
|
|
/**
|
|
* @return java.util.List<java.util.Map < java.lang.String, java.lang.Object>>
|
|
* @author cw chen
|
|
* @description 业主/施工项目经理姓名和身份证号
|
|
* @Param proNo
|
|
* @Param i
|
|
* @date 2023-06-06 10:59
|
|
*/
|
|
List<Map<String, Object>> getUserNameByType(@Param("proNo") String proNo, @Param("type") int type);
|
|
}
|