示例代码如下。
@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);
}
}