zhangtao
dongdingding 1 year ago
parent dbebd42e3d
commit 2b363983cd

@ -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));
}
/**

@ -20,7 +20,7 @@ public interface SzsEnterpriseInformationMapper
* @param ID -
* @return -
*/
public SzsEnterpriseInformation selectSzsEnterpriseInformationByID(String ID);
public SzsEnterpriseInformation selectSzsEnterpriseInformationByID(String uuto);
/**
* -

@ -19,7 +19,7 @@ public interface ISzsEnterpriseInformationService
* @param ID -
* @return -
*/
public SzsEnterpriseInformation selectSzsEnterpriseInformationByID(String ID);
public SzsEnterpriseInformation selectSzsEnterpriseInformationByID(String uuto);
/**
* -

@ -27,8 +27,8 @@ public class SzsEnterpriseInformationServiceImpl implements ISzsEnterpriseInform
* @return -
*/
@Override
public SzsEnterpriseInformation selectSzsEnterpriseInformationByID(String ID) {
return szsEnterpriseInformationMapper.selectSzsEnterpriseInformationByID(ID);
public SzsEnterpriseInformation selectSzsEnterpriseInformationByID(String uuto) {
return szsEnterpriseInformationMapper.selectSzsEnterpriseInformationByID(uuto);
}
/**

@ -159,7 +159,7 @@
<select id="selectSzsEnterpriseInformationByID" parameterType="String" resultMap="SzsEnterpriseInformationResult">
<include refid="selectSzsEnterpriseInformationVo"/>
where ID = #{ID}
where UUIT_NO = #{uuto}
</select>

Loading…
Cancel
Save