<?php
/**
* Object represents table 'taskorderproducts'
*
* @author: http://phpdao.com
* @date: 2018-11-18 12:20
*/
class Taskorderproduct {
var $id;
var $taskorderid;
var $productid;
var $unitid;
var $quantity;
var $productName;
var $unitName;
var $productBuyPrice;
var $productnumber;
}
?>