|
@@ -0,0 +1,20 @@
|
|
|
|
+package com.gyee.backconfig.service.auto.impl;
|
|
|
|
+
|
|
|
|
+import com.gyee.backconfig.model.auto.Region;
|
|
|
|
+import com.gyee.backconfig.mapper.auto.RegionMapper;
|
|
|
|
+import com.gyee.backconfig.service.auto.IRegionService;
|
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * <p>
|
|
|
|
+ * 服务实现类
|
|
|
|
+ * </p>
|
|
|
|
+ *
|
|
|
|
+ * @author wang
|
|
|
|
+ * @since 2022-09-28
|
|
|
|
+ */
|
|
|
|
+@Service
|
|
|
|
+public class RegionServiceImpl extends ServiceImpl<RegionMapper, Region> implements IRegionService {
|
|
|
|
+
|
|
|
|
+}
|