Commit 29b96a56 authored by xixinzhao's avatar xixinzhao

Merge branch 'developer' of http://39.98.45.134:8090/moa/amos-boot-biz into developer

parents 165a28ea aab50174
...@@ -13,4 +13,6 @@ public interface CheckResultService extends IService<CheckResult> { ...@@ -13,4 +13,6 @@ public interface CheckResultService extends IService<CheckResult> {
List<CheckResultDto> selectResult(String code); List<CheckResultDto> selectResult(String code);
void test();
} }
...@@ -37,7 +37,7 @@ public class CheckResultController extends BaseController { ...@@ -37,7 +37,7 @@ public class CheckResultController extends BaseController {
*/ */
@TycloudOperation(ApiLevel = UserType.AGENCY,needAuth = false) @TycloudOperation(ApiLevel = UserType.AGENCY,needAuth = false)
@GetMapping(value = "/selectResult/{code}") @GetMapping(value = "/selectResult/{code}")
@ApiOperation(httpMethod = "GET", value = "测试", notes = "测试") @ApiOperation(httpMethod = "GET", value = "result", notes = "result")
public ResponseModel<List<CheckResultDto>> selectResult(@PathVariable(value = "code") String code) { public ResponseModel<List<CheckResultDto>> selectResult(@PathVariable(value = "code") String code) {
return ResponseHelper.buildResponse(checkResultService.selectResult(code)); return ResponseHelper.buildResponse(checkResultService.selectResult(code));
} }
......
...@@ -8,9 +8,6 @@ import com.yeejoin.amos.boot.module.tdc.api.service.CheckResultService; ...@@ -8,9 +8,6 @@ import com.yeejoin.amos.boot.module.tdc.api.service.CheckResultService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.xml.transform.Result;
import java.util.ArrayList;
import java.util.Date;
import java.util.List; import java.util.List;
@Service @Service
...@@ -24,4 +21,10 @@ public class CheckResultImpl extends ServiceImpl<CheckResultMapper, CheckResult> ...@@ -24,4 +21,10 @@ public class CheckResultImpl extends ServiceImpl<CheckResultMapper, CheckResult>
public List<CheckResultDto> selectResult(String code) { public List<CheckResultDto> selectResult(String code) {
return checkResultMapper.selectResult(code); return checkResultMapper.selectResult(code);
} }
@Override
public void test() {
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment