コード例 #1
0
ファイル: Product_Model.php プロジェクト: anhnt36/duan
 public function __construct()
 {
     parent::__construct();
     self::$_table = 'product';
     self::$field = array('name', 'description', 'price', 'activate', 'createdTime', 'updatedTime');
     $this->validate = new Validate_Library(self::$rules);
 }