Commit 8114851e authored by limei's avatar limei

焊口信息接口

parent 56e81f65
......@@ -221,4 +221,13 @@ public class WeldController extends BaseController {
return ResponseHelper.buildResponse(weldServiceImpl.getWeldList(region));
}
@TycloudOperation(ApiLevel = UserType.AGENCY, needAuth = false)
@GetMapping(value = "/getWeld")
@ApiOperation(httpMethod = "GET", value = "获取焊口定位信息", notes = "获取焊口定位信息")
public ResponseModel<List<Weld>> getWeld(@RequestParam( value = "region",required = false )String region){
return ResponseHelper.buildResponse(weldServiceImpl.list());
}
}
......@@ -369,4 +369,5 @@ class WeldServiceImpl extends BaseService<WeldDto, Weld, WeldMapper> implements
return weldList;
}
}
\ No newline at end of file
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