<?php
/**
* Object represents table 'restaurantorderdetails'
*
* @author: http://phpdao.com
* @date: 2018-05-16 11:37
*/
class Restaurantorderdetail {
var $id;
var $orderId;
var $productId;
var $quantity;
var $price;
var $total;
var $notes;
var $notesPrinted;
var $isPrinted;
var $printedQuantity;
var $daySreial;
var $productCatName;
}
?>