评估申请的代码架构

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,9 @@
package com.rj.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.rj.entity.LbPurchaseApply;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface LbPurchaseApplyMapper extends BaseMapper<LbPurchaseApply> {
}