| 1234567891011121314151617181920212223 |
- <?php
- namespace App\Http\Controllers\api\thirdPart\syrius\beans;
- class TaskItem
- {
- public $name; //名称 string
- public $barcode; //条码 string
- public $quantity; //数量 int
- //Optional
- public $imageUrl; //示意图 string
- public $binLocations; //库位数组 array
- public $attributes; //一些属性{storageSerialNo:"",orderCode:"",...}
- public function get()
- {
- $this->attributes = (array)$this->attributes;
- if (!$this->imageUrl)unset($this->imageUrl);
- return $this;
- }
- }
|