#AI
zhou zhou
11 小时以前 51877df13075ad10ef51107f15bcd21f1661febe
1
2
3
4
5
6
7
8
9
10
11
12
package com.vincent.rsf.server.system.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.vincent.rsf.server.system.entity.AiCallLog;
import com.vincent.rsf.server.system.mapper.AiCallLogMapper;
import com.vincent.rsf.server.system.service.AiCallLogService;
import org.springframework.stereotype.Service;
 
@Service("aiCallLogService")
public class AiCallLogServiceImpl extends ServiceImpl<AiCallLogMapper, AiCallLog> implements AiCallLogService {
 
}