'use strict';
module.exports = app => {
  const { mongoose } = app;
  const { Schema } = mongoose;
  const LinksSchema = new Schema({
    // 名称
    name: {
      type: String,
    },
    // 图片地址
    path: {
      type: String,
    },
    // id
    id: {
      type: String,
    },
    // 访问地址
    links: {
      type: String,
    },
  });
  return mongoose.model('Links', LinksSchema);
};