# 胰島素 ## 胰島素 Attribute | Description | Remark -|-|-|- id | number | Primary Key description | String | 胰島素類型名稱 insulin | array<object> | 胰島素 insulinId | String | 胰島素id name | String | 胰島素名稱 ### 查詢 Request: ```url= GET /insulin/list ``` Query Params: | 欄位 | 型態 | 預設 | 說明 | |---|---|---|---|---| | page | number |1| 當前頁數| | pageSize | number |10| 每頁結果數量,-1 為顯示所有| Response (成功): ```json= { "success": true, "total": 2, "data": [ { "id" : 1, "name": "Apidra 愛胰達", "isType": true, "createdAt": 0 "updatedAt": 0 }, ..... ] } ```