Skip to content

Commit

Permalink
v2.0.0版本更新
Browse files Browse the repository at this point in the history
重大版本更新
  • Loading branch information
zouwei committed Apr 23, 2018
1 parent 2333b7e commit f288054
Show file tree
Hide file tree
Showing 9 changed files with 1,432 additions and 836 deletions.
1,058 changes: 226 additions & 832 deletions README.md

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions lib/BaseActionManager.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/**
* SQL实例基类
*/
class BaseActionManager {

static init(config) {
throw new Error("not implemented");
}

}

module.exports = {BaseActionManager};
3 changes: 2 additions & 1 deletion lib/OFInstance.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
/**
* 【老版本兼容,新版本弃用】
* 通用模块-命令行参数处理
* author:zack zou
* create time:2016-06-27
*/
var oParameters = require("./oParameters.js");
var oParameters = require("./grammar/mysql.js");


/**
Expand Down
3 changes: 2 additions & 1 deletion lib/OFramework.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
/**
* 【老版本兼容,新版本弃用】
* OFramework 统一底层架构
* author:zack zou
* create time:2017-03-23
*/

var ofInstance = require("./OFInstance.js");
const ofInstance = require("./OFInstance.js");

/**
* SQL模型ORM映射对象
Expand Down
Loading

0 comments on commit f288054

Please sign in to comment.