'use strict'; const Service = require('../service/baseService'); class ValueService extends Service { tag() { return this.ctx.model.ValueModel; } } module.exports = ValueService;