master
面包骑士 2024-08-20 14:36:08 +08:00
parent d0b5b1880c
commit cb5a718791
3 changed files with 5 additions and 4 deletions

View File

@ -10,7 +10,7 @@ import java.util.List;
* *
* @author muyu * @author muyu
*/ */
public interface SysDictTypeMapper extends BaseMapper<SysDictType> { public interface SysDictTypeMapper {
/** /**
* *
* *

View File

@ -10,7 +10,7 @@ import java.util.List;
* *
* @author muyu * @author muyu
*/ */
public interface SysDictDataService extends IService<SysDictData> { public interface SysDictDataService {
/** /**
* *
* *

View File

@ -8,6 +8,7 @@ import com.muyu.system.service.SysDictDataService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List; import java.util.List;
/** /**
@ -16,8 +17,8 @@ import java.util.List;
* @author muyu * @author muyu
*/ */
@Service @Service
public class SysDictDataServiceImpl extends ServiceImpl<SysDictDataMapper, SysDictData> implements SysDictDataService { public class SysDictDataServiceImpl implements SysDictDataService {
@Autowired @Resource
private SysDictDataMapper dictDataMapper; private SysDictDataMapper dictDataMapper;
/** /**