需要调用这个接口 把里面的俩个参数传给合同 要具体代码

img

示例代码如下。

@Service
public class CustomService {

    @Autowired
    private ExternalInterBOCustom externalInterBOCustom;

    public void test() {
        Map<String, Object> map = new HashMap<>();
        map.put("acceptDate", "2021-09-01");
        map.put("contractCode", "合同编号");
        
        String result = externalInterBOCustom.updateEndDate2PackAcceptDate(map);
        
        System.out.println(result);
    }
}

img