├── .DS_Store ├── Algo ├── .DS_Store ├── .idea │ ├── .gitignore │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── vcs.xml ├── dashboard_cal │ ├── .DS_Store │ └── TIR_cal.py ├── glucotype_define │ ├── .DS_Store │ ├── clf_beta.pkl │ ├── clf_sensitivity.pkl │ └── glucotype.py ├── neutrition_predict │ ├── cal_neutri.py │ ├── model_weights.pkl │ └── scaler_params.pkl └── rec_pattern │ ├── .DS_Store │ ├── best_rf_model.pkl │ ├── identify_meal.py │ ├── identify_meal_new2.py │ ├── lr_model.pkl │ ├── rf_model.pkl │ └── scaler.pkl ├── LICENSE ├── README.assets ├── .DS_Store ├── glucoagentimg.jpg ├── glucoinsightimg.jpg ├── glucomealimg.jpg └── glucotypeimg.jpg ├── README.md ├── algorithm ├── .gitignore ├── Dockerfile ├── README.md ├── algorithm │ ├── __init__.py │ ├── info.py │ └── op.py ├── app.py ├── config.py ├── db_attrs.py ├── gpt_call │ ├── __init__.py │ └── gpt_call.py ├── gunicorn.conf.py ├── infer │ ├── __init__.py │ ├── cal_neutri.py │ ├── clf_beta.pkl │ ├── clf_sensitivity.pkl │ ├── glucotype.py │ ├── identify_meal.py │ ├── lr_model.pkl │ ├── model_weights.pkl │ ├── rf_model.pkl │ ├── scaler.pkl │ └── scaler_params.pkl ├── requirements.txt ├── utils │ ├── _database.py │ ├── _error.py │ └── _resp.py └── wxService │ ├── __init__.py │ ├── info.py │ └── op.py ├── app ├── .DS_Store └── GlucoInsight 3 │ ├── .DS_Store │ ├── GlucoInsight.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ ├── f1rec.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── heyi.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ ├── f1rec.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── heyi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist │ └── GlucoInsight │ ├── .DS_Store │ ├── Assets.xcassets │ ├── .DS_Store │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 100.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 172.png │ │ ├── 180.png │ │ ├── 196.png │ │ ├── 20.png │ │ ├── 216.png │ │ ├── 256.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 66.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ ├── 92.png │ │ └── Contents.json │ ├── Contents.json │ ├── avator.imageset │ │ ├── Contents.json │ │ └── avator.jpg │ ├── avatorBackground.imageset │ │ ├── Contents.json │ │ └── 流体渐变70.jpg │ └── category.imageset │ │ └── Contents.json │ ├── GlucoInsightApp.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── models │ ├── Diet.swift │ ├── GlucoseData.swift │ ├── Item.swift │ └── UserInfo.swift │ ├── service │ ├── DietService.swift │ ├── GlucoseService.swift │ ├── NotificationManager.swift │ └── UserInfoService.swift │ └── views │ ├── BloodGlucoseChartView.swift │ ├── ChatView.swift │ ├── ContentView.swift │ ├── ContentView2.swift │ ├── DemoView.swift │ ├── DietRecommendationView.swift │ ├── DoubleWheelPickerView.swift │ ├── EmptyContentView.swift │ ├── EmptyDietRecommendationView.swift │ ├── EmptySportsView.swift │ ├── FoodDataView.swift │ ├── FoodDetailsView.swift │ ├── SportsView.swift │ ├── TypeView.swift │ ├── UserDetailView.swift │ └── UserInfoView.swift ├── backend ├── .gitignore ├── .jpb │ └── jpb-settings.xml ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── Dockerfile ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── ex3_2_back │ │ │ ├── ApiProjectApplication.java │ │ │ ├── NonSpringTests.java │ │ │ ├── configuration │ │ │ ├── MyCorsConfiguration.java │ │ │ ├── MyUtilsConfiguration.java │ │ │ └── SwaggerConfig.java │ │ │ ├── controller │ │ │ ├── DietController.java │ │ │ ├── FlaskController.java │ │ │ ├── GlucoController.java │ │ │ ├── InformationController.java │ │ │ ├── InformationRequest.java │ │ │ ├── MyErrorController.java │ │ │ ├── MyTestController.java │ │ │ └── UserController.java │ │ │ ├── domain │ │ │ ├── DevMessage.java │ │ │ ├── PredictRequestAndReturn.java │ │ │ ├── Result.java │ │ │ └── TResult.java │ │ │ ├── entity │ │ │ ├── Diet.java │ │ │ ├── Gluco.java │ │ │ ├── Information.java │ │ │ └── User.java │ │ │ ├── exception │ │ │ ├── MyExceptionHandler.java │ │ │ └── MyUnauthorizedException.java │ │ │ ├── repository │ │ │ ├── DietRepository.java │ │ │ ├── GlucoRepository.java │ │ │ ├── InformationRepository.java │ │ │ └── UserRepository.java │ │ │ ├── service │ │ │ ├── DietService.java │ │ │ └── FlaskService.java │ │ │ └── utils │ │ │ ├── CurrentUser.java │ │ │ ├── CurrentUserResolver.java │ │ │ ├── LoginRequired.java │ │ │ └── MyJwtUtil.java │ └── resources │ │ ├── application-dev.yaml │ │ └── application.yaml │ └── test │ └── java │ └── com │ └── example │ └── ex3_2_back │ ├── ApiProjectApplicationTests.java │ ├── repository │ └── UserRepositoryTests.java │ └── utils │ └── JwtUtilTests.java └── miniprogram-7 ├── app.js ├── app.json ├── app.wxss ├── pages ├── detail1 │ ├── detail1.js │ ├── detail1.json │ ├── detail1.wxml │ └── detail1.wxss ├── index │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── logs │ ├── logs.js │ ├── logs.json │ ├── logs.wxml │ └── logs.wxss └── monitor │ ├── monitor.js │ ├── monitor.json │ ├── monitor.wxml │ └── monitor.wxss ├── project.config.json ├── project.private.config.json ├── sitemap.json └── utils └── util.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/.DS_Store -------------------------------------------------------------------------------- /Algo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/.DS_Store -------------------------------------------------------------------------------- /Algo/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/.idea/.gitignore -------------------------------------------------------------------------------- /Algo/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Algo/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Algo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/.idea/misc.xml -------------------------------------------------------------------------------- /Algo/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/.idea/vcs.xml -------------------------------------------------------------------------------- /Algo/dashboard_cal/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/dashboard_cal/.DS_Store -------------------------------------------------------------------------------- /Algo/dashboard_cal/TIR_cal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/dashboard_cal/TIR_cal.py -------------------------------------------------------------------------------- /Algo/glucotype_define/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/glucotype_define/.DS_Store -------------------------------------------------------------------------------- /Algo/glucotype_define/clf_beta.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/glucotype_define/clf_beta.pkl -------------------------------------------------------------------------------- /Algo/glucotype_define/clf_sensitivity.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/glucotype_define/clf_sensitivity.pkl -------------------------------------------------------------------------------- /Algo/glucotype_define/glucotype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/glucotype_define/glucotype.py -------------------------------------------------------------------------------- /Algo/neutrition_predict/cal_neutri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/neutrition_predict/cal_neutri.py -------------------------------------------------------------------------------- /Algo/neutrition_predict/model_weights.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/neutrition_predict/model_weights.pkl -------------------------------------------------------------------------------- /Algo/neutrition_predict/scaler_params.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/neutrition_predict/scaler_params.pkl -------------------------------------------------------------------------------- /Algo/rec_pattern/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/rec_pattern/.DS_Store -------------------------------------------------------------------------------- /Algo/rec_pattern/best_rf_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/rec_pattern/best_rf_model.pkl -------------------------------------------------------------------------------- /Algo/rec_pattern/identify_meal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/rec_pattern/identify_meal.py -------------------------------------------------------------------------------- /Algo/rec_pattern/identify_meal_new2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/rec_pattern/identify_meal_new2.py -------------------------------------------------------------------------------- /Algo/rec_pattern/lr_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/rec_pattern/lr_model.pkl -------------------------------------------------------------------------------- /Algo/rec_pattern/rf_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/rec_pattern/rf_model.pkl -------------------------------------------------------------------------------- /Algo/rec_pattern/scaler.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/Algo/rec_pattern/scaler.pkl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/README.assets/.DS_Store -------------------------------------------------------------------------------- /README.assets/glucoagentimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/README.assets/glucoagentimg.jpg -------------------------------------------------------------------------------- /README.assets/glucoinsightimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/README.assets/glucoinsightimg.jpg -------------------------------------------------------------------------------- /README.assets/glucomealimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/README.assets/glucomealimg.jpg -------------------------------------------------------------------------------- /README.assets/glucotypeimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/README.assets/glucotypeimg.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/README.md -------------------------------------------------------------------------------- /algorithm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/.gitignore -------------------------------------------------------------------------------- /algorithm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/Dockerfile -------------------------------------------------------------------------------- /algorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/README.md -------------------------------------------------------------------------------- /algorithm/algorithm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/algorithm/__init__.py -------------------------------------------------------------------------------- /algorithm/algorithm/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/algorithm/info.py -------------------------------------------------------------------------------- /algorithm/algorithm/op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/algorithm/op.py -------------------------------------------------------------------------------- /algorithm/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/app.py -------------------------------------------------------------------------------- /algorithm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/config.py -------------------------------------------------------------------------------- /algorithm/db_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/db_attrs.py -------------------------------------------------------------------------------- /algorithm/gpt_call/__init__.py: -------------------------------------------------------------------------------- 1 | from .gpt_call import * -------------------------------------------------------------------------------- /algorithm/gpt_call/gpt_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/gpt_call/gpt_call.py -------------------------------------------------------------------------------- /algorithm/gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/gunicorn.conf.py -------------------------------------------------------------------------------- /algorithm/infer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/infer/__init__.py -------------------------------------------------------------------------------- /algorithm/infer/cal_neutri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/infer/cal_neutri.py -------------------------------------------------------------------------------- /algorithm/infer/clf_beta.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/infer/clf_beta.pkl -------------------------------------------------------------------------------- /algorithm/infer/clf_sensitivity.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/infer/clf_sensitivity.pkl -------------------------------------------------------------------------------- /algorithm/infer/glucotype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/infer/glucotype.py -------------------------------------------------------------------------------- /algorithm/infer/identify_meal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/infer/identify_meal.py -------------------------------------------------------------------------------- /algorithm/infer/lr_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/infer/lr_model.pkl -------------------------------------------------------------------------------- /algorithm/infer/model_weights.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/infer/model_weights.pkl -------------------------------------------------------------------------------- /algorithm/infer/rf_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/infer/rf_model.pkl -------------------------------------------------------------------------------- /algorithm/infer/scaler.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/infer/scaler.pkl -------------------------------------------------------------------------------- /algorithm/infer/scaler_params.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/infer/scaler_params.pkl -------------------------------------------------------------------------------- /algorithm/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/requirements.txt -------------------------------------------------------------------------------- /algorithm/utils/_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/utils/_database.py -------------------------------------------------------------------------------- /algorithm/utils/_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/utils/_error.py -------------------------------------------------------------------------------- /algorithm/utils/_resp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/utils/_resp.py -------------------------------------------------------------------------------- /algorithm/wxService/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/wxService/__init__.py -------------------------------------------------------------------------------- /algorithm/wxService/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/wxService/info.py -------------------------------------------------------------------------------- /algorithm/wxService/op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/algorithm/wxService/op.py -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/GlucoInsight 3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/.DS_Store -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight.xcodeproj/project.xcworkspace/xcuserdata/f1rec.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight.xcodeproj/project.xcworkspace/xcuserdata/f1rec.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight.xcodeproj/project.xcworkspace/xcuserdata/heyi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight.xcodeproj/project.xcworkspace/xcuserdata/heyi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight.xcodeproj/project.xcworkspace/xcuserdata/heyi.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight.xcodeproj/project.xcworkspace/xcuserdata/heyi.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight.xcodeproj/xcuserdata/f1rec.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight.xcodeproj/xcuserdata/f1rec.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight.xcodeproj/xcuserdata/f1rec.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight.xcodeproj/xcuserdata/f1rec.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight.xcodeproj/xcuserdata/heyi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight.xcodeproj/xcuserdata/heyi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight.xcodeproj/xcuserdata/heyi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight.xcodeproj/xcuserdata/heyi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/.DS_Store -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/66.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/92.png -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/avator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/avator.imageset/Contents.json -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/avator.imageset/avator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/avator.imageset/avator.jpg -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/avatorBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/avatorBackground.imageset/Contents.json -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/avatorBackground.imageset/流体渐变70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/avatorBackground.imageset/流体渐变70.jpg -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Assets.xcassets/category.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Assets.xcassets/category.imageset/Contents.json -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/GlucoInsightApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/GlucoInsightApp.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Info.plist -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/models/Diet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/models/Diet.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/models/GlucoseData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/models/GlucoseData.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/models/Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/models/Item.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/models/UserInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/models/UserInfo.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/service/DietService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/service/DietService.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/service/GlucoseService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/service/GlucoseService.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/service/NotificationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/service/NotificationManager.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/service/UserInfoService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/service/UserInfoService.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/BloodGlucoseChartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/BloodGlucoseChartView.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/ChatView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/ChatView.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/ContentView.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/ContentView2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/ContentView2.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/DemoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/DemoView.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/DietRecommendationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/DietRecommendationView.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/DoubleWheelPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/DoubleWheelPickerView.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/EmptyContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/EmptyContentView.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/EmptyDietRecommendationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/EmptyDietRecommendationView.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/EmptySportsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/EmptySportsView.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/FoodDataView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/FoodDataView.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/FoodDetailsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/FoodDetailsView.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/SportsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/SportsView.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/TypeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/TypeView.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/UserDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/UserDetailView.swift -------------------------------------------------------------------------------- /app/GlucoInsight 3/GlucoInsight/views/UserInfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/app/GlucoInsight 3/GlucoInsight/views/UserInfoView.swift -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.jpb/jpb-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/.jpb/jpb-settings.xml -------------------------------------------------------------------------------- /backend/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /backend/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/mvnw -------------------------------------------------------------------------------- /backend/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/mvnw.cmd -------------------------------------------------------------------------------- /backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/pom.xml -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/ApiProjectApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/ApiProjectApplication.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/NonSpringTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/NonSpringTests.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/configuration/MyCorsConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/configuration/MyCorsConfiguration.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/configuration/MyUtilsConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/configuration/MyUtilsConfiguration.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/configuration/SwaggerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/configuration/SwaggerConfig.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/controller/DietController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/controller/DietController.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/controller/FlaskController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/controller/FlaskController.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/controller/GlucoController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/controller/GlucoController.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/controller/InformationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/controller/InformationController.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/controller/InformationRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/controller/InformationRequest.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/controller/MyErrorController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/controller/MyErrorController.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/controller/MyTestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/controller/MyTestController.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/controller/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/controller/UserController.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/domain/DevMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/domain/DevMessage.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/domain/PredictRequestAndReturn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/domain/PredictRequestAndReturn.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/domain/Result.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/domain/Result.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/domain/TResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/domain/TResult.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/entity/Diet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/entity/Diet.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/entity/Gluco.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/entity/Gluco.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/entity/Information.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/entity/Information.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/entity/User.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/exception/MyExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/exception/MyExceptionHandler.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/exception/MyUnauthorizedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/exception/MyUnauthorizedException.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/repository/DietRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/repository/DietRepository.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/repository/GlucoRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/repository/GlucoRepository.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/repository/InformationRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/repository/InformationRepository.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/repository/UserRepository.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/service/DietService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/service/DietService.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/service/FlaskService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/service/FlaskService.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/utils/CurrentUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/utils/CurrentUser.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/utils/CurrentUserResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/utils/CurrentUserResolver.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/utils/LoginRequired.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/utils/LoginRequired.java -------------------------------------------------------------------------------- /backend/src/main/java/com/example/ex3_2_back/utils/MyJwtUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/java/com/example/ex3_2_back/utils/MyJwtUtil.java -------------------------------------------------------------------------------- /backend/src/main/resources/application-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/resources/application-dev.yaml -------------------------------------------------------------------------------- /backend/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/main/resources/application.yaml -------------------------------------------------------------------------------- /backend/src/test/java/com/example/ex3_2_back/ApiProjectApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/test/java/com/example/ex3_2_back/ApiProjectApplicationTests.java -------------------------------------------------------------------------------- /backend/src/test/java/com/example/ex3_2_back/repository/UserRepositoryTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/test/java/com/example/ex3_2_back/repository/UserRepositoryTests.java -------------------------------------------------------------------------------- /backend/src/test/java/com/example/ex3_2_back/utils/JwtUtilTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/backend/src/test/java/com/example/ex3_2_back/utils/JwtUtilTests.java -------------------------------------------------------------------------------- /miniprogram-7/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/app.js -------------------------------------------------------------------------------- /miniprogram-7/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/app.json -------------------------------------------------------------------------------- /miniprogram-7/app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/app.wxss -------------------------------------------------------------------------------- /miniprogram-7/pages/detail1/detail1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/pages/detail1/detail1.js -------------------------------------------------------------------------------- /miniprogram-7/pages/detail1/detail1.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram-7/pages/detail1/detail1.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/pages/detail1/detail1.wxml -------------------------------------------------------------------------------- /miniprogram-7/pages/detail1/detail1.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/pages/detail1/detail1.wxss -------------------------------------------------------------------------------- /miniprogram-7/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/pages/index/index.js -------------------------------------------------------------------------------- /miniprogram-7/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | } 4 | } -------------------------------------------------------------------------------- /miniprogram-7/pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/pages/index/index.wxml -------------------------------------------------------------------------------- /miniprogram-7/pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/pages/index/index.wxss -------------------------------------------------------------------------------- /miniprogram-7/pages/logs/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/pages/logs/logs.js -------------------------------------------------------------------------------- /miniprogram-7/pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | } 4 | } -------------------------------------------------------------------------------- /miniprogram-7/pages/logs/logs.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/pages/logs/logs.wxml -------------------------------------------------------------------------------- /miniprogram-7/pages/logs/logs.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/pages/logs/logs.wxss -------------------------------------------------------------------------------- /miniprogram-7/pages/monitor/monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/pages/monitor/monitor.js -------------------------------------------------------------------------------- /miniprogram-7/pages/monitor/monitor.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram-7/pages/monitor/monitor.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/pages/monitor/monitor.wxml -------------------------------------------------------------------------------- /miniprogram-7/pages/monitor/monitor.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/pages/monitor/monitor.wxss -------------------------------------------------------------------------------- /miniprogram-7/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/project.config.json -------------------------------------------------------------------------------- /miniprogram-7/project.private.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/project.private.config.json -------------------------------------------------------------------------------- /miniprogram-7/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/sitemap.json -------------------------------------------------------------------------------- /miniprogram-7/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HENGRUIZZZZ/GlucoInsight/HEAD/miniprogram-7/utils/util.js --------------------------------------------------------------------------------