skyouc
2025-04-17 8f5cdc2bae1ca3ebbe79db52b54591e8a0fb9321
1
2
3
4
5
6
7
8
9
10
11
12
package com.vincent.rsf.server.manager.service.impl;
 
import com.vincent.rsf.server.manager.mapper.IsptHistoriesMapper;
import com.vincent.rsf.server.manager.entity.IsptHistories;
import com.vincent.rsf.server.manager.service.IsptHistoriesService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("isptHistoriesService")
public class IsptHistoriesServiceImpl extends ServiceImpl<IsptHistoriesMapper, IsptHistories> implements IsptHistoriesService {
 
}