package com.rj.service; import com.baomidou.mybatisplus.extension.service.IService; import com.rj.entity.LbAssessmentApply; import java.util.Map; public interface ILbAssessmentApplyService extends IService { Map add(LbAssessmentApply entity); Map update(LbAssessmentApply entity); Map deleteById(String id); Map pageQuery(Integer current, Integer size, String tenantId, String applicantName, String applicantPhone, String colleagueName, String teamLeaderName); }