|
@@ -0,0 +1,13 @@
|
|
|
+package com.hfln.portal.infrastructure.service.impl;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+import com.hfln.portal.infrastructure.mapper.TblParameterMapper;
|
|
|
+import com.hfln.portal.infrastructure.po.TblParameter;
|
|
|
+import com.hfln.portal.infrastructure.service.TblParameterService;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+@Service
|
|
|
+public class TblParameterServiceImpl extends ServiceImpl<TblParameterMapper, TblParameter> implements TblParameterService {
|
|
|
+}
|
|
|
+
|
|
|
+
|