mirror of
https://github.com/weizhiqiang1995/erp-pro.git
synced 2025-03-04 03:13:43 +08:00
feat: 修改商城根据id查询接口名字
This commit is contained in:
parent
3a2f6c08f3
commit
5cf3edc183
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue