<?php
/**
* Object represents table 'rentproduct'
*
* @author: http://phpdao.com
* @date: 2016-08-17 10:05
*/
class Rentproduct {
var $id;
var $name;
var $quantity;
var $buyprice;
var $totalprice;
var $rentprice;
var $paytype;
var $supplierid;
var $createdate;
var $info;
var $isdel;
var $dailyentryid;
}
?>