加盟商资格面试查询面试信息
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package com.cool.store.service;
|
||||
|
||||
import com.cool.store.vo.PartnerInterviewInfoVO;
|
||||
|
||||
public interface PartnerInterviewService {
|
||||
|
||||
/**
|
||||
* 加盟商查询面试信息
|
||||
* @param partnerId
|
||||
* @return
|
||||
*/
|
||||
PartnerInterviewInfoVO queryByPartnerId(String partnerId);
|
||||
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
package com.cool.store.service.impl;
|
||||
|
||||
import com.cool.store.mapper.HyPartnerInterviewMapper;
|
||||
import com.cool.store.service.PartnerInterviewService;
|
||||
import com.cool.store.vo.PartnerInterviewInfoVO;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Service
|
||||
public class PartnerInterviewServiceImpl implements PartnerInterviewService {
|
||||
|
||||
@Autowired
|
||||
private HyPartnerInterviewMapper interviewMapper;
|
||||
|
||||
/**
|
||||
* 加盟商查询面试信息
|
||||
* @param partnerId
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public PartnerInterviewInfoVO queryByPartnerId(String partnerId) {
|
||||
return interviewMapper.queryByPartnerId(partnerId);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user