@Override
 public void createLogisticsPrintInfo(LogisticsPrintInfo logisticsPrintInfo) {
   if (queryLogisticsPrintInfoByNameAndCustomerId(
           logisticsPrintInfo.getName(), logisticsPrintInfo.getCustomerId())
       != null) {
     throw new RuntimeException("添加过这个物流公司, 不需要重复添加");
   }
   logisticsPrintInfoRepository.createLogisticsPrintInfo(logisticsPrintInfo);
 }