You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
928 B
Java
46 lines
928 B
Java
package com.glxp.api.service.purchase;
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
import com.glxp.api.req.purchase.FilterCertRemindMsgRequest;
|
|
import com.glxp.api.res.purchase.SupCertRemindMsgResponse;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 资质预警信息Service
|
|
*/
|
|
public interface SupCertRemindMsgService {
|
|
|
|
/**
|
|
* 查询资质预警信息列表
|
|
*
|
|
* @param filterCertRemindMsgRequest
|
|
* @return
|
|
*/
|
|
List<SupCertRemindMsgResponse> filterList(FilterCertRemindMsgRequest filterCertRemindMsgRequest);
|
|
|
|
/**
|
|
* 确认消息
|
|
*
|
|
* @param id
|
|
* @param handleMsg
|
|
* @return
|
|
*/
|
|
BaseResponse confirmMsg(Integer id, String handleMsg);
|
|
|
|
/**
|
|
* 忽略消息
|
|
*
|
|
* @param id
|
|
* @param ignoreStatus
|
|
* @return
|
|
*/
|
|
BaseResponse ignoreMsg(Integer id, Integer ignoreStatus);
|
|
|
|
/**
|
|
* 生成预警信息
|
|
*/
|
|
void createRemindMsg();
|
|
|
|
}
|