您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

response-key.js 320B

1234567891011
  1. const Schwifty = require('@hapipal/schwifty');
  2. const Joi = require('joi');
  3. module.exports = class ResponseKey extends Schwifty.Model {
  4. static get tableName() { return 'response_keys' }
  5. static get joiSchema() {
  6. return Joi.object({
  7. response_key_id: Joi.number().required(),
  8. })
  9. }
  10. }