Course.raml 266 B

12345678910111213141516
  1. #%RAML 1.0 DataType
  2. # Course
  3. type: object
  4. properties:
  5. id:
  6. type: integer
  7. description: 课程id
  8. name:
  9. type: string
  10. description: 课程名称
  11. code:
  12. type: string
  13. description: 选课码
  14. teacher:
  15. type: User
  16. description: 老师信息