lrf 2 年之前
父節點
當前提交
2bc5e0517e
共有 1 個文件被更改,包括 15 次插入0 次删除
  1. 15 0
      app/service/system/actTags.js

+ 15 - 0
app/service/system/actTags.js

@@ -0,0 +1,15 @@
+'use strict';
+const { CrudService } = require('naf-framework-mongoose-free/lib/service');
+const { BusinessError, ErrorCode } = require('naf-core').Error;
+const _ = require('lodash');
+const assert = require('assert');
+
+// 
+class ActTagsService extends CrudService {
+  constructor(ctx) {
+    super(ctx, 'acttags');
+    this.model = this.ctx.model.System.ActTags;
+  }
+}
+
+module.exports = ActTagsService;