修改名称
This commit is contained in:
23
src/main/java/com/rj/service/ILbAssessmentApplyService.java
Normal file
23
src/main/java/com/rj/service/ILbAssessmentApplyService.java
Normal file
@@ -0,0 +1,23 @@
|
||||
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,
|
||||
Long tenantId,
|
||||
String applicantName,
|
||||
String applicantPhone,
|
||||
String colleagueName,
|
||||
String teamLeaderName);
|
||||
}
|
||||
Reference in New Issue
Block a user