24 lines
773 B
Java
24 lines
773 B
Java
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<LbAssessmentApply> {
|
|
|
|
Map<String, Object> add(LbAssessmentApply entity);
|
|
|
|
Map<String, Object> update(LbAssessmentApply entity);
|
|
|
|
Map<String, Object> deleteById(String id);
|
|
|
|
Map<String, Object> pageQuery(Integer current,
|
|
Integer size,
|
|
String tenantId,
|
|
String applicantName,
|
|
String applicantPhone,
|
|
String colleagueName,
|
|
String teamLeaderName);
|
|
}
|