Junjie
2026-04-27 2cc61346cc0a3e5338aa8957f79f4c99c204f339
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.ai.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.zy.ai.entity.AiAutoTuneChange;
import com.zy.ai.mapper.AiAutoTuneChangeMapper;
import com.zy.ai.service.AiAutoTuneChangeService;
import org.springframework.stereotype.Service;
 
@Service("aiAutoTuneChangeService")
public class AiAutoTuneChangeServiceImpl extends ServiceImpl<AiAutoTuneChangeMapper, AiAutoTuneChange>
        implements AiAutoTuneChangeService {
}