db_timer_bak.js 259 B

123456789101112
  1. 'use strict';
  2. const modelBase = require('./model_base');
  3. const F = require('../common/function');
  4. module.exports = function (tableName, modelManager) {
  5. modelBase.call(this);
  6. this.table = tableName;
  7. //const modelMap = modelManager.model_map;
  8. };