member.js 238 B

12345678910
  1. const mongoose = require('mongoose');
  2. const Schema = mongoose.Schema;
  3. const MemberSchema = new Schema({
  4. "userId": String, // 门户Id
  5. "studentId": String, // 学号
  6. "name": String // 真实人名
  7. });
  8. module.exports = MemberSchema;