2025-04-17 17:04:30 +08:00

52 lines
1.0 KiB
PHP

<?php
namespace App\Services\Business\MiaoXuan;
use App\Models\BusinessGoodsSku;
use App\Services\Business\BusinessClient;
class MiaoXuan extends BusinessClient
{
public function auth()
{
// TODO: Implement auth() method.
}
public function downloadGoodsListAndBind($activityNo)
{
}
public function bindGoods($goods)
{
Goods::bindGoods($goods, $this->shop->id);
}
public function incrQuantity($businessGoodsSku, $num, $incremental)
{
}
public function downloadOrdersAndSave($beginTime, $endTime, $downloadType = 'default', $page = 1)
{
}
public function batchIncrQuantity($businessGoodsSkus, $num, $incremental)
{
}
public function downloadGoods($skuId)
{
// TODO: Implement downloadGoods() method.
}
public function createLogistic($orderSn, $waybillNo)
{
// TODO: Implement createLogistic() method.
}
public function cancelLogistic($orderSn, $waybillNo)
{
// TODO: Implement cancelLogistic() method.
}
}