WS
2023-09-07 99eb091857a72a0defd0a5bdd2185d1d2d8da573
src/main/java/com/fzzy/push/sh2023/SH2023OrderApiServiceImpl.java
@@ -1,6 +1,5 @@
package com.fzzy.push.sh2023;
import com.alibaba.fastjson.JSON;
import com.fzzy.api.Constant;
import com.fzzy.api.data.ApiParam;
import com.fzzy.api.data.PushProtocol;
@@ -41,7 +40,7 @@
    @Override
    public void execute(OrderData req, String orderType, ApiConfs conf) throws ParseException {
    public void execute(OrderData req, String orderType, ApiConfs conf, String orderid) throws ParseException {
        // 若指令类型不为1,则返回
        if(!OrderConstant.ORDER_TYPE_1.equals(orderType)){
@@ -58,6 +57,7 @@
        param.setStart(DateUtils.parseDate(req.getStarttime(), new String[]{"yyyy-MM-dd HH:mm:ss"}));
        param.setEnd(DateUtils.parseDate(req.getEndtime(), new String[]{"yyyy-MM-dd HH:mm:ss"}));
        param.setDeptId(conf.getDeptId());
        param.setOrderid(orderid);
        String[] interfaces = ids.split(",");
        for (String inteId : interfaces) {