zhangtao
dongdingding 1 year ago
parent dbebd42e3d
commit 2b363983cd

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

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

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

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

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

Loading…
Cancel
Save