29 lines
763 B
PHP
29 lines
763 B
PHP
<?php
|
|
//TODO: fix phpdoc
|
|
/**
|
|
* @property int $id
|
|
* @property 'new'|'accepted'|'sent'|'done' $status
|
|
* @property 'singleAddress'|'multipleAddresses' $deliveryMode
|
|
* @property string $deliveryAddressName
|
|
* @property string $deliveryAddressLine
|
|
* @property string $deliveryAddressPLZ
|
|
* @property string $deliveryAddressCity
|
|
* @property int $create
|
|
* @property int $createBy
|
|
*/
|
|
|
|
// id, distributorId, intRef, extRef, status, trackingNumber, create, createBy
|
|
class WarehouseOrderModel extends TTCrudBaseModel {
|
|
public int $id;
|
|
public int $distributorId;
|
|
public ?string $intRef;
|
|
public ?string $extRef;
|
|
public float $sum;
|
|
public string $status;
|
|
public ?string $trackingNumber;
|
|
public int $create;
|
|
public int $createBy;
|
|
}
|
|
|
|
|