-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4b7a191
commit f03b681
Showing
8 changed files
with
39 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "myqee/oop", | ||
"description": "MyQEE OOP ORM Module", | ||
"keywords": ["MyQEE", "Module"], | ||
"homepage": "http://www.myqee.com/", | ||
"type": "myqee-module", | ||
"license": "Apache-2.0", | ||
"authors": [ | ||
{ | ||
"name": "jonwang", | ||
"email": "[email protected]", | ||
"homepage": "http://www.queyang.com/" | ||
} | ||
], | ||
"autoload": { | ||
"psr-0": {"MyQEE\\Module\\OOP": "src/"} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,12 @@ | |
* MyQEE ORM 核心类 | ||
* | ||
* @author 呼吸二氧化碳 <[email protected]> | ||
* @category MyQEE | ||
* @package System | ||
* @subpackage Core | ||
* @category Module | ||
* @package ORM | ||
* @copyright Copyright (c) 2008-2013 myqee.com | ||
* @license http://www.myqee.com/license.html | ||
*/ | ||
abstract class Core_OOP_ORM | ||
abstract class Module_OOP_ORM | ||
{ | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,12 @@ | |
* MyQEE ORM 核心类 | ||
* | ||
* @author 呼吸二氧化碳 <[email protected]> | ||
* @category MyQEE | ||
* @package System | ||
* @subpackage Core | ||
* @category Module | ||
* @package ORM | ||
* @copyright Copyright (c) 2008-2013 myqee.com | ||
* @license http://www.myqee.com/license.html | ||
*/ | ||
class Core_OOP_ORM_Data | ||
class Module_OOP_ORM_Data | ||
{ | ||
/** | ||
* ID 字段名 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,12 @@ | |
* ORM 数据库核心类 | ||
* | ||
* @author 呼吸二氧化碳 <[email protected]> | ||
* @category MyQEE | ||
* @package System | ||
* @subpackage Core | ||
* @category Module | ||
* @package ORM | ||
* @copyright Copyright (c) 2008-2013 myqee.com | ||
* @license http://www.myqee.com/license.html | ||
*/ | ||
class Core_OOP_ORM_Finder_DB extends OOP_ORM | ||
class Module_OOP_ORM_Finder_DB extends OOP_ORM | ||
{ | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,12 @@ | |
* MyQEE ORM REST核心类 | ||
* | ||
* @author 呼吸二氧化碳 <[email protected]> | ||
* @category MyQEE | ||
* @package System | ||
* @subpackage Core | ||
* @category Module | ||
* @package ORM | ||
* @copyright Copyright (c) 2008-2013 myqee.com | ||
* @license http://www.myqee.com/license.html | ||
*/ | ||
class Core_OOP_ORM_Finder_REST extends OOP_ORM | ||
class Module_OOP_ORM_Finder_REST extends OOP_ORM | ||
{ | ||
/** | ||
* API接口地址 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,12 @@ | |
* MyQEE ORM 索引核心类 | ||
* | ||
* @author 呼吸二氧化碳 <[email protected]> | ||
* @category MyQEE | ||
* @package System | ||
* @subpackage Core | ||
* @category Module | ||
* @package ORM | ||
* @copyright Copyright (c) 2008-2013 myqee.com | ||
* @license http://www.myqee.com/license.html | ||
*/ | ||
abstract class Core_OOP_ORM_Index | ||
abstract class Module_OOP_ORM_Index | ||
{ | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,12 @@ | |
* ORM 字段解析器 | ||
* | ||
* @author 呼吸二氧化碳 <[email protected]> | ||
* @category MyQEE | ||
* @package System | ||
* @subpackage Core | ||
* @category Module | ||
* @package ORM | ||
* @copyright Copyright (c) 2008-2013 myqee.com | ||
* @license http://www.myqee.com/license.html | ||
*/ | ||
abstract class Core_OOP_ORM_Parse | ||
abstract class Module_OOP_ORM_Parse | ||
{ | ||
|
||
public function __construct() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,12 @@ | |
* MyQEE ORM 核心类 | ||
* | ||
* @author 呼吸二氧化碳 <[email protected]> | ||
* @category MyQEE | ||
* @package System | ||
* @subpackage Core | ||
* @category Module | ||
* @package ORM | ||
* @copyright Copyright (c) 2008-2013 myqee.com | ||
* @license http://www.myqee.com/license.html | ||
*/ | ||
class Core_OOP_ORM_Result extends ArrayIterator | ||
class Module_OOP_ORM_Result extends ArrayIterator | ||
{ | ||
|
||
/** | ||
|