38 lines
1.4 KiB
PHP
38 lines
1.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Class WarehouseOrderModel
|
|
*
|
|
* Represents a warehouse order with delivery details and related metadata.
|
|
*
|
|
* @property int $id Unique identifier for the warehouse order
|
|
* @property string $orderNumber Unique order number
|
|
* @property int $distributorId ID of the distributor associated with the order
|
|
* @property string $delAddrCity City of the delivery address
|
|
* @property string $delAddrEMail Email associated with the delivery address
|
|
* @property string $delAddrLine Line of the delivery address
|
|
* @property string $delAddrName Name associated with the delivery address
|
|
* @property string $delAddrPLZ Postal code of the delivery address
|
|
* @property int $editor ID of the editor who last modified the order
|
|
* @property string $note Additional notes for the order
|
|
* @property string $positions Details about positions in the order
|
|
* @property int $create Timestamp of the order creation
|
|
* @property int $createBy ID of the user who created the order
|
|
*/
|
|
class WarehouseOrderModel extends TTCrudBaseModel {
|
|
public int $id;
|
|
public string $orderNumber;
|
|
public int $distributorId;
|
|
public string $delAddrCity;
|
|
public string $delAddrEMail;
|
|
public string $delAddrLine;
|
|
public string $delAddrName;
|
|
public string $delAddrPLZ;
|
|
public int $editor;
|
|
public string $note;
|
|
public string $positions;
|
|
public int $create;
|
|
public int $createBy;
|
|
}
|
|
|
|
?>
|