fix:service
This commit is contained in:
parent
4492eb5902
commit
59cc54cf24
|
@ -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> {
|
||||
|
||||
}
|
|
@ -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> {
|
||||
|
||||
}
|
|
@ -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 {
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user