mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-30 21:15:34 +08:00
28 lines
440 B
PHP
28 lines
440 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
/**
|
||
* 售后换货业务
|
||
*
|
||
* @version 2024.04.11
|
||
*/
|
||
class erpapi_dealer_response_process_exchange
|
||
{
|
||
/**
|
||
* 添加
|
||
* @param mixed $sdf sdf
|
||
* @return mixed 返回值
|
||
*/
|
||
|
||
public function add($sdf)
|
||
{
|
||
|
||
|
||
return array('rsp'=>'succ', 'msg' => $msg);
|
||
}
|
||
|
||
|
||
}
|