|
|
|
@ -53,9 +53,10 @@ public class SzsEnterpriseInformationController extends BaseController {
|
|
|
|
|
* 获取省-企业基本信息详细信息
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
@GetMapping(value = "/{ID}")
|
|
|
|
|
public AjaxResult getInfo(@PathVariable("ID") String ID) {
|
|
|
|
|
return success(szsEnterpriseInformationService.selectSzsEnterpriseInformationByID(ID));
|
|
|
|
|
@GetMapping(value = "/getByUuto")
|
|
|
|
|
@ApiOperation("根据信用代码查询省-企业基本信息列表")
|
|
|
|
|
public AjaxResult getInfo(@RequestParam ("uuto")String uuto) {
|
|
|
|
|
return success(szsEnterpriseInformationService.selectSzsEnterpriseInformationByID(uuto));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|