评估申请的代码架构

This commit is contained in:
2026-04-29 19:01:02 +08:00
parent d547b61843
commit 521cc30f94
10 changed files with 679 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
package com.rj.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.rj.entity.LbPurchaseApply;
import java.time.LocalDate;
import java.util.Map;
public interface ILbPurchaseApplyService extends IService<LbPurchaseApply> {
Map<String, Object> add(LbPurchaseApply entity);
Map<String, Object> update(LbPurchaseApply entity);
Map<String, Object> deleteById(Long id);
Map<String, Object> pageQuery(Integer current,
Integer size,
String tenantId,
String applyUser,
String applyPhone,
String colleagueName,
String teamLeader,
LocalDate applyDate);
}