Skip to content

Commit

Permalink
feat: 學生資訊get API新增回傳學號
Browse files Browse the repository at this point in the history
  • Loading branch information
Chinlinlee committed Jan 30, 2021
1 parent daa2dc2 commit 6c06d40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion routes/api/stuInfo/controller/get_StuInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ module.exports = async function(req ,res)
system : sessionStuInfo.stuType ,
faculty : sessionStuInfo.stuFaculty ,
stuName : sessionStuInfo.stuName ,
allSemno : sessionStuInfo.allSemno
stuNum : sessionStuInfo.stuNum ,
allSemno : sessionStuInfo.allSemno
}
return res.send(result);
}
Expand Down

0 comments on commit 6c06d40

Please sign in to comment.