fix:service

This commit is contained in:
xiaoguangbin 2023-09-27 08:54:25 +08:00
parent 4492eb5902
commit 59cc54cf24
3 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,11 @@
package org.jeecg.modules.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.jeecg.modules.base.entity.rnauto.GardsNuclIded;
import org.jeecg.modules.base.entity.rnauto.GardsNuclLinesIded;
@Mapper
public interface GardsNuclIdedAutoMapper extends BaseMapper<GardsNuclIded> {
}

View File

@ -0,0 +1,9 @@
package org.jeecg.modules.service;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.base.entity.rnauto.GardsNuclIded;
import org.jeecg.modules.base.entity.rnauto.GardsNuclLinesIded;
public interface GardsNuclIdedAutoService extends IService<GardsNuclIded> {
}

View File

@ -0,0 +1,18 @@
package org.jeecg.modules.service.impl;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.jeecg.modules.base.entity.rnauto.GardsNuclIded;
import org.jeecg.modules.base.entity.rnauto.GardsNuclLinesIded;
import org.jeecg.modules.mapper.GardsNuclIdedAutoMapper;
import org.jeecg.modules.mapper.GardsNuclLinesIdedAutoMapper;
import org.jeecg.modules.service.GardsNuclIdedAutoService;
import org.jeecg.modules.service.GardsNuclLinesIdedAutoService;
import org.springframework.stereotype.Service;
@Service
@DS("ora")
public class GardsNuclIdedAutoServiceImpl extends ServiceImpl<GardsNuclIdedAutoMapper, GardsNuclIded> implements GardsNuclIdedAutoService {
}