|
|
@ -1,5 +1,7 @@ |
|
|
|
package com.elink.esua.epdc.controller; |
|
|
|
|
|
|
|
import com.elink.esua.epdc.common.token.dto.TokenDto; |
|
|
|
import com.elink.esua.epdc.commons.tools.annotation.LoginUser; |
|
|
|
import com.elink.esua.epdc.commons.tools.page.PageData; |
|
|
|
import com.elink.esua.epdc.commons.tools.utils.Result; |
|
|
|
import com.elink.esua.epdc.dto.house.form.HouseSaleRentInfoPublishFormDTO; |
|
|
@ -47,9 +49,10 @@ public class ApiCustomHouseSaleRentInfoController { |
|
|
|
*/ |
|
|
|
@GetMapping("resi/mypublishedlist") |
|
|
|
public Result<PageData<HouseSaleRentInfoListResultDTO>> listMyPuhlishedList(@RequestParam("pageNum") Integer pageNum, |
|
|
|
@RequestParam("pageSize") Integer pageSize) { |
|
|
|
@RequestParam("pageSize") Integer pageSize, |
|
|
|
@LoginUser TokenDto loginUser) { |
|
|
|
|
|
|
|
return customFeignClient.listMyPuhlishedList(pageNum, pageSize); |
|
|
|
return customFeignClient.listMyPuhlishedList(loginUser.getUserId(), pageNum, pageSize); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|