|
@@ -0,0 +1,21 @@
|
|
|
+package com.xt.js.gkaq.frame.service.impl;
|
|
|
+
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+import com.xt.js.gkaq.common.BaseMapper;
|
|
|
+import com.xt.js.gkaq.common.BaseServiceImpl;
|
|
|
+import com.xt.js.gkaq.frame.mappers.RoleModelMapper;
|
|
|
+import com.xt.js.gkaq.frame.model.RoleModel;
|
|
|
+import com.xt.js.gkaq.frame.service.RoleService;
|
|
|
+
|
|
|
+@Service
|
|
|
+public class RoleServiceImpl extends BaseServiceImpl<RoleModel> implements RoleService {
|
|
|
+ @Autowired
|
|
|
+ private RoleModelMapper mapper;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected BaseMapper<RoleModel> getMapper() {
|
|
|
+ return mapper;
|
|
|
+ }
|
|
|
+}
|