OrderNotifyRequest.php
560 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
namespace Lackoxygen\TopWarehouse\Request\Order;
use Lackoxygen\TopWarehouse\Request\Request;
class OrderNotifyRequest extends Request
{
/**
* 订单号
*
* @var string
*/
public $order_id;
/**
* 1:成功;2:失败
*
* @var string
*/
public $status;
/**
* 如失败,则放错误信息
*
* @var string
*/
public $notes;
protected function initialize(): void
{
$this->contentType = 'application/json';
$this->method = 'POST';
}
}