多单位版国产化地质资料管理系统
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zbooksoft.gdmis.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.zbooksoft.gdmis.dao.StudyTypeMapper;
import com.zbooksoft.gdmis.data.entity.StudyType;
import com.zbooksoft.gdmis.service.StudyTypeService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
 
@Slf4j
@Service
public class StudyTypeServiceImpl extends ServiceImpl<StudyTypeMapper, StudyType>
        implements StudyTypeService {
 
 
}