1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.gkhy.safePlatform.safeCheck.rpc.service.impl;
|
| import com.gkhy.safePlatform.safeCheck.rpc.service.CheckWorkService;
| import org.springframework.stereotype.Service;
|
| @Service
| public class CheckServiceImpl implements CheckWorkService {
|
| @Override
| public String getWorkInfoJson(Long workId) {
| return "No sjkafcha";
| }
| }
|
|