Commit d772a638 by 徐高华

bug

parent 46df7afd
......@@ -79,6 +79,8 @@ public interface StaffClerkRelationApiService {
StaffClerkRelationDTO getOneByClerkId(String clerkId);
StaffClerkRelationDTO getOneByClerkId(String clerkId,String wxEnterpriseId);
List<StaffClerkRelationDTO> listByClerkIds(List<String> clerkIds);
List<StaffClerkRelationDTO> listByClerkIdsWxEnterpriseId(List<String> clerkIds, String wxEnterpriseId);
......
......@@ -291,6 +291,11 @@ public class StaffClerkRelationApiServiceImpl implements StaffClerkRelationApiSe
}
@Override
public StaffClerkRelationDTO getOneByClerkId(String clerkId,String wxEnterpriseId) {
return tabHaobanStaffClerkRelationMapper.getOneByClerkId(clerkId,wxEnterpriseId);
}
@Override
public StaffClerkRelationDTO getByClerkId(String clerkId) {
StaffClerkRelationDTO staffRelation = staffClerkRelationService.getByClerkId(clerkId);
return staffRelation;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment