| 123456789101112131415161718192021222324 |
- package com.fdkankan.agent.service.impl;
- import com.fdkankan.agent.entity.AgentFrameworkEntity;
- import com.fdkankan.agent.mapper.IAgentFrameworkMapper;
- import com.fdkankan.agent.service.IAgentFrameworkService;
- import com.fdkankan.base.mapper.base.IBaseMapper;
- import com.fdkankan.base.service.impl.BaseServiceImpl;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- /**
- * Created by Hb_zzZ on 2021/2/25.
- */
- @Service
- public class AgentFrameworkServiceImpl extends BaseServiceImpl<AgentFrameworkEntity, Long> implements IAgentFrameworkService{
- @Autowired
- private IAgentFrameworkMapper mapper;
- @Override
- public IBaseMapper<AgentFrameworkEntity, Long> getBaseMapper() {
- return mapper;
- }
- }
|