Commit 2266dd37 by zhiwj

接受订单信息

parent 0580fc2a
......@@ -30,7 +30,7 @@ public interface EvaluateMsgLogApiService {
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
* @throws
*/
ServiceResponse<Void> timerSendMemberMessage();
ServiceResponse<Void> timerSendMemberMessage(String param);
/**
* 队列方法 发送模板消息
......
......@@ -87,7 +87,7 @@ public class EvaluateMsgLogApiServiceImpl implements EvaluateMsgLogApiService {
}
@Override
public ServiceResponse<Void> timerSendMemberMessage() {
public ServiceResponse<Void> timerSendMemberMessage(String params) {
// 查询到所有的企业id
List<EnterpriseDTO> enterpriseList = enterpriseApiService.listEnterpriseByName(null).getResult();
List<Integer> enterpriseIds = Optional.ofNullable(enterpriseList).orElse(Collections.emptyList()).stream().map(EnterpriseDTO::getEnterpriseId).collect(Collectors.toList());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment