Ai红线分析代码框架

This commit is contained in:
2026-04-21 08:37:59 +08:00
parent 02c6ef84d1
commit 3c933c3c06
6 changed files with 322 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package com.rj.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.rj.entity.RedLineRecord;
import org.apache.ibatis.annotations.Mapper;
/**
* 触及红线记录表 Mapper
*/
@Mapper
public interface RedLineRecordMapper extends BaseMapper<RedLineRecord> {
}