Files
smartDriveEE/src/main/java/com/rj/service/ILbAssessmentApplyService.java
2026-04-29 20:49:53 +08:00

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