修改名称

This commit is contained in:
2026-04-29 19:20:29 +08:00
parent 521cc30f94
commit 68d0c7ea37
6 changed files with 44 additions and 44 deletions

View 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);
}