luweism
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # 中心軟體 # 註冊 * 方法:post * URL: http://localhost:8080/birc-member-management-system/member #### 變數及規則:(前端給後端資料) * 姓lastName:(String)長度1~5 * 名firstName:(String)長度1~5 * 電話cellphone:(String)一定要10 * 密碼password:(String)長度6~20 * 學號studentId:(String)長度8 or 9 * 確認密碼confirmPassword:(String)長度6~20 #### 輸出參數:(後端給前端的資料) 無 # 登入 * 方法:post * URL: http://localhost:8080/birc-member-management-system/member/login #### 變數及規則:(前端給後端資料) * 學號studentId:(String)長度8 or 9 * 密碼password:(String)確認是否一致 #### 輸出參數(後端給前端的資料) * 姓lastName(String) * 名firstName(String) * 學號studentId(String) * 身分identity(String) # 簽到 * 方法:post * URL: http://localhost:8080/birc-member-management-system/sign/check-in #### 變數及規則:(前端給後端資料) * 學號studentId:(String)長度8 or 9 #### 輸出參數(後端給前端的資料) * id(int) # 簽退 * 方法:post * URL: http://localhost:8080/birc-member-management-system/sign/check-out #### 變數及規則:(前端給後端資料) * id:(int) * 學號studentId:(String)長度8 or 9 * 小時restHours:(Double) * 事件affair:(String)長度不能超過22個字 #### 輸出參數(後端給前端的資料) 無 # 簽到退列表 ## 簽到狀態 * 方法:GET * URL: http://localhost:8080/birc-member-management-system/sign/status #### 變數及規則:(前端給後端資料) * 學號(studentId): (String)長度8 or 9 #### 輸出參數(後端給前端的資料) * 狀態(isSignIn) : (boolean) * 簽到 : true * 未簽到 : false ## 查詢簽到退全部記錄 * 方法:GET * URL: http://localhost:8080/birc-member-management-system/sign/student-all/search #### 變數及規則:(前端給後端資料) * 學號studentId:(String)長度8 or 9 #### 輸出參數(後端給前端的資料) * 學號studentId:(String)長度8 or 9 * 簽到時間checkIn:(String)格式yyyy/MM/dd HH:mm:ss * 簽退時間checkOut:(String)格式yyyy/MM/dd HH:mm:ss * 小時hours:(Double) * 事件affair:(String)長度不能超過22個字 ## 查詢簽到退記錄(天) * 方法:GET * URL: http://localhost:8080/birc-member-management-system/sign/student-day/search #### 變數及規則:(前端給後端資料) * 學號studentId:(String)長度8 or 9 * 查詢當天日期checkIn:(String)格式yyyy/MM/dd HH:mm:ss #### 輸出參數(後端給前端的資料) * 學號studentId:(String)長度8 or 9 * 簽到時間checkIn:(String)格式yyyy/MM/dd HH:mm:ss * 簽退時間checkOut:(String)格式yyyy/MM/dd HH:mm:ss * 小時hours:(Double) * 事件affair:(String)長度不能超過22個字 ## 查詢簽到退記錄(周) * 方法:GET * URL: http://localhost:8080/birc-member-management-system/sign/student-week/search #### 變數及規則:(前端給後端資料) * 學號studentId:(String)長度8 or 9 * 查詢當周的日期checkIn:(String)格式yyyy/MM/dd HH:mm:ss #### 輸出參數(後端給前端的資料) * 學號studentId:(String)長度8 or 9 * 簽到時間checkIn:(String)格式yyyy/MM/dd HH:mm:ss * 簽退時間checkOut:(String)格式yyyy/MM/dd HH:mm:ss * 小時hours:(Double) * 事件affair:(String)長度不能超過22個字 ## 查詢簽到退時數(總) * 方法:GET * URL: http://localhost:8080/birc-member-management-system/sign/all-total-time/search #### 變數及規則:(前端給後端資料) * 學號studentId:(String)長度8 or 9 #### 輸出參數(後端給前端的資料)(管理者) * 學號studentId:(String)長度8 or 9 * 姓lastName:(String)長度1~5 * 名firstName:(String)長度1~5 * 加總小時hours:(Double) #### 輸出參數(後端給前端的資料)(使用者) * 學號studentId:(String)長度8 or 9 * 簽到時間checkIn:(String)格式yyyy/MM/dd HH:mm:ss * 簽退時間checkOut:(String)格式yyyy/MM/dd HH:mm:ss * 小時hours:(Double) * 事件affair:(String)長度不能超過22個字 * 加總小時total:(Double) ## 查詢簽到退時數(天) * 方法:GET * URL: http://localhost:8080/birc-member-management-system/sign/day-total-time/search #### 變數及規則:(前端給後端資料) * 學號studentId:(String)長度8 or 9 * 查詢當天日期checkIn:(String)格式yyyy/MM/dd HH:mm:ss #### 輸出參數(後端給前端的資料)(管理者) * 學號studentId:(String)長度8 or 9 * 姓lastName:(String)長度1~5 * 名firstName:(String)長度1~5 * 加總小時hours:(Double) #### 輸出參數(後端給前端的資料)(使用者) * 學號studentId:(String)長度8 or 9 * 簽到時間checkIn:(String)格式yyyy/MM/dd HH:mm:ss * 簽退時間checkOut:(String)格式yyyy/MM/dd HH:mm:ss * 小時hours:(Double) * 事件affair:(String)長度不能超過22個字 * 加總小時total:(Double) ## 查詢簽到退時數(周) * 方法:GET * URL: http://localhost:8080/birc-member-management-system/sign/week-total-time/search #### 變數及規則:(前端給後端資料) * 學號studentId:(String)長度8 or 9 * 查詢當周的日期checkIn:(String)格式yyyy/MM/dd HH:mm:ss #### 輸出參數(後端給前端的資料)(管理者) * 學號studentId:(String)長度8 or 9 * 姓lastName:(String)長度1~5 * 名firstName:(String)長度1~5 * 加總小時hours:(Double) #### 輸出參數(後端給前端的資料)(使用者) * 學號studentId:(String)長度8 or 9 * 簽到時間checkIn:(String)格式yyyy/MM/dd HH:mm:ss * 簽退時間checkOut:(String)格式yyyy/MM/dd HH:mm:ss * 小時hours:(Double) * 事件affair:(String)長度不能超過22個字 * 加總小時total:(Double) # 請假 * 方法:POST * URL: http://localhost:8080/birc-member-management-system/absence #### 變數及規則:(前端給後端資料) * 學號studentId:(String)長度8 or 9 * 代理人學號agentId:(String)長度8 or 9 * 請假日期date:(String)格式yyyy/MM/dd * 請假類別absentType:(int) * 1:病假 * 2:事假 * 3:公假 * 4:喪假 * 5:其他 * 原因reason:(String)長度不能超過100 #### 輸出參數:(後端給前端的資料) 無 * 方法:GET * URL: http://localhost:8080/birc-member-management-system/absence #### 變數及規則:(前端給後端資料) 無 #### 輸出參數:(後端給前端的資料) * 學生學號studentId:(String)長度8 or 9 * 學生姓名studentName : (String) # 請假列表 ## 學生資料 * 方法:GET * URL: http://localhost:8080/birc-member-management-system/absence/searchStudent #### 變數及規則:(前端給後端資料) * 學號studentId:(String)長度8 or 9 #### 輸出參數(後端給前端的資料) * 學號studentId:(String)長度8 or 9 * 學生姓名studentName : (String) ## 依姓名查詢請假紀錄 * 方法:GET * URL: http://localhost:8080/birc-member-management-system/absence/searchByName #### 變數及規則:(前端給後端資料) * 查詢者學號studentId : (String)長度8 or 9 * 查詢學號searchStudentId:(String)長度8 or 9 #### 輸出參數(後端給前端的資料) * 學生姓名studentName : (String) * 代理人姓名agentName : (String) * 請假日期date:(String)格式yyyy/MM/dd * 請假類別absentTypeValue:(String) * 1:病假 * 2:事假 * 3:公假 * 4:喪假 * 5:其他 * 原因reason:(String)長度不能超過100 ## 依日期查詢請假紀錄 * 方法:GET * URL: http://localhost:8080/birc-member-management-system/absence/searchByDate #### 變數及規則:(前端給後端資料) * 查詢者學號studentId : (String) 長度8 or 9 * 查詢日期searchDate : (String)格式 : yyyy/MM/dd #### 輸出參數(後端給前端的資料) * 學生姓名studentName : (String) * 代理人姓名agentName : (String) * 請假日期date:(String)格式yyyy/MM/dd * 請假事由absentTypeValue:(String) * 1:病假 * 2:事假 * 3:公假 * 4:喪假 * 5:其他 * 原因reason:(String)長度不能超過100 ## 查詢全部 * 方法:GET * URL: http://localhost:8080/birc-member-management-system/absence/searchAll #### 變數及規則:(前端給後端資料) * 查詢者學號studentId : (String) 長度8 or 9 #### 輸出參數(後端給前端的資料) * 學生姓名studentName : (String) * 代理人姓名agentName : (String) * 請假日期date:(String)格式yyyy/MM/dd * 請假類別absentTypeValue:(String) * 1:病假 * 2:事假 * 3:公假 * 4:喪假 * 5:其他 * 原因reason:(String)長度不能超過100 # 個人資訊 ## 顯示資訊 * 方法:post * URL: http://localhost:8080/birc-member-management-system/info/show #### 變數及規則:(前端給後端資料) * 學號studentId:(String)長度8 or 9 #### 輸出參數(後端給前端的資料) * 學號studentId:(String)長度8 or 9 * 姓lastName:(String)長度1~5 * 名firstName:(String)長度1~5 * 電話cellphone:(String)一定要10 * 註冊時間registrationTime:(String)格式yyyy/MM/dd HH:mm:ss * 照片photo:(String) 照片的URL * 缺席時數shortTime:(Double) ## 修改密碼 * 方法:post * URL: http://localhost:8080/birc-member-management-system/info/revisePassword #### 變數及規則:(前端給後端資料) * 學號studentId:(String)長度8 or 9 * 密碼password:(String)長度6~20 * 新密碼newPassword:(String)長度6~20 * 確認密碼confirmPassword:(String)長度6~20 #### 輸出參數(後端給前端的資料) * 無 ## 修改大頭貼 * 方法:post * URL: http://localhost:8080/birc-member-management-system/info/revisePhoto #### 變數及規則:(前端給後端資料) * 學號studentId:(String)長度8 or 9 * 照片photo:(File) #### 輸出參數(後端給前端的資料) * 無 # 申請單 * 方法:post * URL: http://localhost:8080/birc-member-management-system/application #### 變數及規則:(前端給後端資料) * 學號studentId:(String)長度8 or 9 * 申請單類別tableType:(Integer) * 特殊申請單(1) * 寒暑假申請單(3) * 請假類別absentType:(Integer) * 病假(1) * 事假(2) * 公假(3) * 喪假(4) * 其他(5) * 請假開始日startDate:(String) 格式YYYY/MM/DD * 請假結束日endDate:(String) 格式YYYY/MM/DD * 讀書計畫studyPlan:(String) * 理由reason:(String) #### 輸出參數:(後端給前端的資料) * 無 ## 動態查詢表單 * 方法:GET * URL: http://localhost:8080/birc-member-management-system/application/tableType #### 變數及規則:(前端給後端資料) * 無 #### 輸出參數:(後端給前端的資料) * tableCode:(Integer) * tableTypeName:(String) # 申請單查詢 ## 查詢全部 * 方法:GET * URL: http://localhost:8080/birc-member-management-system/application/all-student/search #### 輸入參數:(前端給後端的資料) * 表單編號(tableType):int * 特殊申請單(1) * 寒暑假申請單(3) #### 輸出參數:(後端給前端的資料) * 學生學號(studentId):String * 學生姓名(name):String * 申請單類別名稱(tableTypeName):String * 請假事由(absentType):String * 請假事由編號(absentTypeCode):int * 起始日期(startDate):String(yyyy/MM/dd) * 結束日期(endDate):String(yyyy/MM/dd) * 原因(reason):String * 讀書計畫(studyPlan):String ## 依學生姓名查詢 * 方法:GET * URL: http://localhost:8080/birc-member-management-system/application/student/search #### 輸入參數:(前端給後端的資料) * 表單編號(tableType):int * 特殊申請單(1) * 寒暑假申請單(3) * 學生學號(studentId):String #### 輸出參數:(後端給前端的資料) * 學生學號(studentId):String * 學生姓名(name):String * 申請單類別名稱(tableTypeName):String * 請假事由(absentType):String * 請假事由編號(absentTypeCode):int * 起始日期(startDate):String(yyyy/MM/dd) * 結束日期(endDate):String(yyyy/MM/dd) * 原因(reason):String * 讀書計畫(studyPlan):String # API新增 * 方法:post * URL: http://localhost:8080/birc-member-management-system/function/insert #### 變數及規則:(前端給後端資料) * 方法名稱 name:(String) * 方法URL url:(String) * method:(String) POST||GET * parameterBeanList:[ * 變數名稱name:(String)長度1~10 * 參數類別type:(int) 0請求||1回應 * 變數型態dataType:(String)長度1~20 ] #### 輸出參數:(後端給前端的資料) 無 # API查詢 * 方法:post * URL: http://localhost:8080/birc-member-management-system/function/search #### 變數及規則:(前端給後端資料) 無 #### 輸出參數:(後端給前端的資料) * 方法名稱 name:(String) * 方法URL url:(String) * method:(String) POST||GET * parameterBeanList:[ * 變數名稱name:(String)長度1~10 * 參數類別type:(int) 0請求||1回應 * 變數型態dataType:(String)長度1~20 ] # 開門 * 方法:post * URL: http://localhost:8080/birc-member-management-system/open/door #### 變數及規則:(前端給後端資料) * 學號studentId:(String)長度8 or 9 * key:(String)00 #### 輸出參數:(後端給前端的資料) 無 # 錯誤訊息: * 成功是會傳空errorCode| | errorCode| message | | -------- | -------- | |User - Empty string|不能為空字串| |User - StudentId length wrong|學號長度為8或9個字| |User - Password length wrong|密碼長度為6到20個字| |User - LastName length wrong|姓名最大長度為5個字| |User - FirstName length wrong|姓氏最大長度為5個字| |User - Cellphone length wrong|手機長度為10個字| |User - ConfirmPassword not correspond|密碼與確認密碼不符| |User - StudentId registered|此學號已被註冊| |User - Empty studentId|請輸入學號| |User - Empty password|請輸入密碼| |User - StudentId not registered|查無此學號| |User - Password wrong|密碼錯誤| |User - Check in longer than check out|簽到時間大於簽退時間| |User - Affair length wrong|事件字數超過22個字| |User - Check in wrong|簽到失敗| |User - Check Out wrong|簽退失敗| |User - No check in|沒有簽到過| |User - No User|沒有此用戶| |User - Has check out|簽退過了| |User - No data|沒此筆資料| |User - Has check in|簽到過了| |User - AbsentType not found|請假類別不存在|

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully