CrmTool.php 414 B

1234567891011121314151617181920
  1. <?php
  2. namespace Tool\MayouTool;
  3. use Tool\MayouTool\Bean\Crm\TaobaoBatchSendParamBean;
  4. use Tool\MayouTool\Crm\Crm;
  5. class CrmTool
  6. {
  7. /**
  8. * 淘宝批量发货接口
  9. * @param TaobaoBatchSendParamBean $taobaoBatchSendParamBean
  10. */
  11. public static function batchSend(TaobaoBatchSendParamBean $taobaoBatchSendParamBean)
  12. {
  13. return Crm::taobaoBatchSend($taobaoBatchSendParamBean);
  14. }
  15. }