skyouc
2025-05-09 18cee3f153e61fb04b17701d63fbd51a9276122a
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 {
 
}