|
|
|
@ -3,6 +3,7 @@ package com.glxp.api.controller.inv;
|
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.api.controller.BaseController;
|
|
|
|
|
import com.glxp.api.req.inv.FilterInvRemindMsgRequest;
|
|
|
|
|
import com.glxp.api.res.inv.InvRemindMsgResponse;
|
|
|
|
|
import com.glxp.api.service.inv.InvRemindMsgService;
|
|
|
|
@ -18,7 +19,7 @@ import java.util.List;
|
|
|
|
|
*/
|
|
|
|
|
@Slf4j
|
|
|
|
|
@RestController
|
|
|
|
|
public class InvRemindMsgController {
|
|
|
|
|
public class InvRemindMsgController extends BaseController {
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
private InvRemindMsgService invRemindMsgService;
|
|
|
|
@ -31,6 +32,11 @@ public class InvRemindMsgController {
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/udiwms/inv/remind/msg/filter")
|
|
|
|
|
public BaseResponse filterList(FilterInvRemindMsgRequest filterInvRemindMsgRequest) {
|
|
|
|
|
|
|
|
|
|
if (!isHosUser()) {
|
|
|
|
|
filterInvRemindMsgRequest.setSupId(getCustomerId());
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
List<InvRemindMsgResponse> list = invRemindMsgService.filterList(filterInvRemindMsgRequest);
|
|
|
|
|
PageInfo<InvRemindMsgResponse> pageInfo = new PageInfo<>(list);
|
|
|
|
|
return ResultVOUtils.page(pageInfo);
|
|
|
|
|