verou
2025-03-26 62aa424ec7387f8905a33bd1bf27b2e0d173326a
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.LocTypeMapper;
import com.vincent.rsf.server.manager.entity.LocType;
import com.vincent.rsf.server.manager.service.LocTypeService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("locTypeService")
public class LocTypeServiceImpl extends ServiceImpl<LocTypeMapper, LocType> implements LocTypeService {
 
}