#
zhou zhou
2 天以前 78a4c3f8f157b7ff8b6003847685b50ccb73a9c4
1
2
3
4
5
6
7
8
9
10
11
12
package com.vincent.rsf.server.system.service.impl;
 
import com.vincent.rsf.server.system.mapper.DictTypeMapper;
import com.vincent.rsf.server.system.entity.DictType;
import com.vincent.rsf.server.system.service.DictTypeService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("dictTypeService")
public class DictTypeServiceImpl extends ServiceImpl<DictTypeMapper, DictType> implements DictTypeService {
 
}