|
@@ -0,0 +1,18 @@
|
|
|
+package com.fjs.scenic.service.system.impl;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+import com.fjs.scenic.entity.system.TypeAuthority;
|
|
|
+import com.fjs.scenic.mapper.system.TypeAuthorityMapper;
|
|
|
+import com.fjs.scenic.service.system.TypeAuthorityService;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 后台管理员 景区资料录入权限信息(TypeAuthority)表服务实现类
|
|
|
+ *
|
|
|
+ * @author lfj
|
|
|
+ * @since 2021-09-27 13:53:31
|
|
|
+ */
|
|
|
+@Service("typeAuthorityService")
|
|
|
+public class TypeAuthorityServiceImpl extends ServiceImpl<TypeAuthorityMapper, TypeAuthority> implements TypeAuthorityService {
|
|
|
+
|
|
|
+}
|