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,15 @@
package com.rj.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.rj.entity.RedLineRecord;
import com.rj.mapper.RedLineRecordMapper;
import com.rj.service.IRedLineRecordService;
import org.springframework.stereotype.Service;
/**
* 触及红线记录服务实现
*/
@Service
public class RedLineRecordServiceImpl extends ServiceImpl<RedLineRecordMapper, RedLineRecord>
implements IRedLineRecordService {
}