|
@@ -67,11 +67,11 @@ public class MyPublishController extends AppBaseController {
|
|
|
* 查询我的近况 列表
|
|
|
*/
|
|
|
@ApiOperation("我的近况 分页列表")
|
|
|
+ @ApiImplicitParam(name = "appUserId", value = "会员id",paramType="Long")
|
|
|
@GetMapping("/list")
|
|
|
- public TableDataInfo pageList() {
|
|
|
- AppMemberVo user = getLoginUser().getUser();
|
|
|
+ public TableDataInfo pageList(Long appUserId) {
|
|
|
TbMyPublish tbMyPublish = new TbMyPublish();
|
|
|
- tbMyPublish.setAppUserId(user.getUserId());
|
|
|
+ tbMyPublish.setAppUserId(appUserId);
|
|
|
tbMyPublish.setDeleted("N");
|
|
|
return publishService.pageList(tbMyPublish);
|
|
|
}
|