|
@@ -7,6 +7,10 @@ import com.miaxis.newgzpt.mapper.GzptUserInfoMapper;
|
|
|
import com.miaxis.newgzpt.service.IGzptUserInfoService;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -20,4 +24,13 @@ import org.springframework.stereotype.Service;
|
|
|
@DataSource(value = DataSourceTypeEnum.NEWGZPT)
|
|
|
public class GzptUserInfoServiceImpl extends ServiceImpl<GzptUserInfoMapper, GzptUserInfo> implements IGzptUserInfoService {
|
|
|
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ GzptUserInfoMapper mapper;
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<GzptUserInfo> getList() {
|
|
|
+ return mapper.getList;
|
|
|
+ }
|
|
|
}
|