feat: 修改商城根据id查询接口名字

This commit is contained in:
sdhkjh 2024-10-16 09:20:11 +08:00
parent 3a2f6c08f3
commit 5cf3edc183

View file

@ -65,10 +65,10 @@ public class ShopAddressController {
* @param inputObject 入参以及用户信息等获取对象
* @param outputObject 出参以及提示信息的返回值对象
*/
@ApiOperation(id = "selectShopAddressByIds", value = "根据id查询收件地址信息", method = "POST", allUse = "2")
@ApiOperation(id = "selectShopAddressById", value = "根据id查询收件地址信息", method = "POST", allUse = "2")
@ApiImplicitParams({
@ApiImplicitParam(id = "id", name = "id", value = "主键id", required = "required")})
@RequestMapping("/post/ShopAddressController/selectShopAddressByIds")
@RequestMapping("/post/ShopAddressController/selectShopAddressById")
public void selectShopAddressByIds(InputObject inputObject, OutputObject outputObject) {
shopAddressService.selectById(inputObject, outputObject);
}