From 1e92c359f4dfd5f3c98e1b365f283dc0012bee52 Mon Sep 17 00:00:00 2001 From: Biiddd <1256773838@qq.com> Date: Thu, 17 Oct 2024 23:52:10 +0800 Subject: [PATCH] init --- .gitignore | 1 + config/db.go | 26 ++++++++++ config/readConfig.go | 31 ++++++++++++ go.mod | 40 +++++++++++++++ go.sum | 97 +++++++++++++++++++++++++++++++++++++ handlers/HospitalHandler.go | 58 ++++++++++++++++++++++ handlers/RecordHandler.go | 33 +++++++++++++ handlers/UserHandler.go | 39 +++++++++++++++ handlers/defaultHandler.go | 13 +++++ main.go | 24 +++++++++ models/hospital.go | 11 +++++ models/record.go | 35 +++++++++++++ models/user.go | 17 +++++++ routers/router.go | 22 +++++++++ 14 files changed, 447 insertions(+) create mode 100644 .gitignore create mode 100644 config/db.go create mode 100644 config/readConfig.go create mode 100644 go.mod create mode 100644 go.sum create mode 100644 handlers/HospitalHandler.go create mode 100644 handlers/RecordHandler.go create mode 100644 handlers/UserHandler.go create mode 100644 handlers/defaultHandler.go create mode 100644 main.go create mode 100644 models/hospital.go create mode 100644 models/record.go create mode 100644 models/user.go create mode 100644 routers/router.go diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..91cc9ca --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/config.toml diff --git a/config/db.go b/config/db.go new file mode 100644 index 0000000..2d634a4 --- /dev/null +++ b/config/db.go @@ -0,0 +1,26 @@ +package config + +import ( + "fmt" + "gorm.io/driver/mysql" + "gorm.io/gorm" + "log" +) + +var DB *gorm.DB + +func InitDB() { + var err error + // "%s:%s@tcp(%s:%d)/%s?charset=utf8mb4&parseTime=True&loc=Local" + dsn := fmt.Sprintf( + "%s:%s@tcp(%s:%d)/%s?charset=utf8mb4&parseTime=True&loc=Local", + Conf.DB.User, + Conf.DB.Passwd, + Conf.DB.Host, + Conf.DB.Port, + Conf.DB.Database) + DB, err = gorm.Open(mysql.Open(dsn), &gorm.Config{}) + if err != nil { + log.Fatalf("无法连接到数据库: %v", err) + } +} diff --git a/config/readConfig.go b/config/readConfig.go new file mode 100644 index 0000000..d6030d6 --- /dev/null +++ b/config/readConfig.go @@ -0,0 +1,31 @@ +package config + +import "github.com/BurntSushi/toml" + +type Config struct { + Server ServerConfig `toml:"server"` + DB DBConfig `toml:"db"` +} + +type ServerConfig struct { + Port int `toml:"port"` +} + +type DBConfig struct { + Host string `toml:"host"` + Port int `toml:"port"` + Database string `toml:"database"` + User string `toml:"user"` + Passwd string `toml:"passwd"` +} + +var Conf *Config + +func ReadConfig(path string) error { + var c Config + if _, err := toml.DecodeFile(path, &c); err != nil { + return err + } + Conf = &c + return nil +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..835f8d4 --- /dev/null +++ b/go.mod @@ -0,0 +1,40 @@ +module health-go + +go 1.22 + +require ( + filippo.io/edwards25519 v1.1.0 // indirect + github.com/BurntSushi/toml v1.4.0 // indirect + github.com/bytedance/sonic v1.11.6 // indirect + github.com/bytedance/sonic/loader v0.1.1 // indirect + github.com/cloudwego/base64x v0.1.4 // indirect + github.com/cloudwego/iasm v0.2.0 // indirect + github.com/gabriel-vasile/mimetype v1.4.3 // indirect + github.com/gin-contrib/sse v0.1.0 // indirect + github.com/gin-gonic/gin v1.10.0 // indirect + github.com/go-playground/locales v0.14.1 // indirect + github.com/go-playground/universal-translator v0.18.1 // indirect + github.com/go-playground/validator/v10 v10.20.0 // indirect + github.com/go-sql-driver/mysql v1.8.1 // indirect + github.com/goccy/go-json v0.10.2 // indirect + github.com/jinzhu/inflection v1.0.0 // indirect + github.com/jinzhu/now v1.1.5 // indirect + github.com/json-iterator/go v1.1.12 // indirect + github.com/klauspost/cpuid/v2 v2.2.7 // indirect + github.com/leodido/go-urn v1.4.0 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect + github.com/modern-go/reflect2 v1.0.2 // indirect + github.com/pelletier/go-toml/v2 v2.2.2 // indirect + github.com/twitchyliquid64/golang-asm v0.15.1 // indirect + github.com/ugorji/go/codec v1.2.12 // indirect + golang.org/x/arch v0.8.0 // indirect + golang.org/x/crypto v0.23.0 // indirect + golang.org/x/net v0.25.0 // indirect + golang.org/x/sys v0.20.0 // indirect + golang.org/x/text v0.19.0 // indirect + google.golang.org/protobuf v1.34.1 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect + gorm.io/driver/mysql v1.5.7 // indirect + gorm.io/gorm v1.25.12 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..c798ffc --- /dev/null +++ b/go.sum @@ -0,0 +1,97 @@ +filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA= +filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4= +github.com/BurntSushi/toml v1.4.0 h1:kuoIxZQy2WRRk1pttg9asf+WVv6tWQuBNVmK8+nqPr0= +github.com/BurntSushi/toml v1.4.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho= +github.com/bytedance/sonic v1.11.6 h1:oUp34TzMlL+OY1OUWxHqsdkgC/Zfc85zGqw9siXjrc0= +github.com/bytedance/sonic v1.11.6/go.mod h1:LysEHSvpvDySVdC2f87zGWf6CIKJcAvqab1ZaiQtds4= +github.com/bytedance/sonic/loader v0.1.1 h1:c+e5Pt1k/cy5wMveRDyk2X4B9hF4g7an8N3zCYjJFNM= +github.com/bytedance/sonic/loader v0.1.1/go.mod h1:ncP89zfokxS5LZrJxl5z0UJcsk4M4yY2JpfqGeCtNLU= +github.com/cloudwego/base64x v0.1.4 h1:jwCgWpFanWmN8xoIUHa2rtzmkd5J2plF/dnLS6Xd/0Y= +github.com/cloudwego/base64x v0.1.4/go.mod h1:0zlkT4Wn5C6NdauXdJRhSKRlJvmclQ1hhJgA0rcu/8w= +github.com/cloudwego/iasm v0.2.0 h1:1KNIy1I1H9hNNFEEH3DVnI4UujN+1zjpuk6gwHLTssg= +github.com/cloudwego/iasm v0.2.0/go.mod h1:8rXZaNYT2n95jn+zTI1sDr+IgcD2GVs0nlbbQPiEFhY= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/gabriel-vasile/mimetype v1.4.3 h1:in2uUcidCuFcDKtdcBxlR0rJ1+fsokWf+uqxgUFjbI0= +github.com/gabriel-vasile/mimetype v1.4.3/go.mod h1:d8uq/6HKRL6CGdk+aubisF/M5GcPfT7nKyLpA0lbSSk= +github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= +github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= +github.com/gin-gonic/gin v1.10.0 h1:nTuyha1TYqgedzytsKYqna+DfLos46nTv2ygFy86HFU= +github.com/gin-gonic/gin v1.10.0/go.mod h1:4PMNQiOhvDRa013RKVbsiNwoyezlm2rm0uX/T7kzp5Y= +github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA= +github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY= +github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY= +github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY= +github.com/go-playground/validator/v10 v10.20.0 h1:K9ISHbSaI0lyB2eWMPJo+kOS/FBExVwjEviJTixqxL8= +github.com/go-playground/validator/v10 v10.20.0/go.mod h1:dbuPbCMFw/DrkbEynArYaCwl3amGuJotoKCe95atGMM= +github.com/go-sql-driver/mysql v1.7.0/go.mod h1:OXbVy3sEdcQ2Doequ6Z5BW6fXNQTmx+9S1MCJN5yJMI= +github.com/go-sql-driver/mysql v1.8.1 h1:LedoTUt/eveggdHS9qUFC1EFSa8bU2+1pZjSRpvNJ1Y= +github.com/go-sql-driver/mysql v1.8.1/go.mod h1:wEBSXgmK//2ZFJyE+qWnIsVGmvmEKlqwuVSjsCm7DZg= +github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU= +github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= +github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= +github.com/jinzhu/now v1.1.5 h1:/o9tlHleP7gOFmsnYNz3RGnqzefHA47wQpKrrdTIwXQ= +github.com/jinzhu/now v1.1.5/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= +github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= +github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= +github.com/klauspost/cpuid/v2 v2.2.7 h1:ZWSB3igEs+d0qvnxR/ZBzXVmxkgt8DdzP6m9pfuVLDM= +github.com/klauspost/cpuid/v2 v2.2.7/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= +github.com/knz/go-libedit v1.10.1/go.mod h1:MZTVkCWyz0oBc7JOWP3wNAzd002ZbM/5hgShxwh4x8M= +github.com/leodido/go-urn v1.4.0 h1:WT9HwE9SGECu3lg4d/dIA+jxlljEa1/ffXKmRjqdmIQ= +github.com/leodido/go-urn v1.4.0/go.mod h1:bvxc+MVxLKB4z00jd1z+Dvzr47oO32F/QSNjSBOlFxI= +github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= +github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/pelletier/go-toml/v2 v2.2.2 h1:aYUidT7k73Pcl9nb2gScu7NSrKCSHIDE89b3+6Wq+LM= +github.com/pelletier/go-toml/v2 v2.2.2/go.mod h1:1t835xjRzz80PqgE6HHgN2JOsmgYu/h4qDAS4n929Rs= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= +github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI= +github.com/twitchyliquid64/golang-asm v0.15.1/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08= +github.com/ugorji/go/codec v1.2.12 h1:9LC83zGrHhuUA9l16C9AHXAqEV/2wBQ4nkvumAE65EE= +github.com/ugorji/go/codec v1.2.12/go.mod h1:UNopzCgEMSXjBc6AOMqYvWC1ktqTAfzJZUZgYf6w6lg= +golang.org/x/arch v0.0.0-20210923205945-b76863e36670/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8= +golang.org/x/arch v0.8.0 h1:3wRIsP3pM4yUptoR96otTUOXI367OS0+c9eeRi9doIc= +golang.org/x/arch v0.8.0/go.mod h1:FEVrYAQjsQXMVJ1nsMoVVXPZg6p2JE2mx8psSWTDQys= +golang.org/x/crypto v0.23.0 h1:dIJU/v2J8Mdglj/8rJ6UUOM3Zc9zLZxVZwwxMooUSAI= +golang.org/x/crypto v0.23.0/go.mod h1:CKFgDieR+mRhux2Lsu27y0fO304Db0wZe70UKqHu0v8= +golang.org/x/net v0.25.0 h1:d/OCCoBEUq33pjydKrGQhw7IlUPI2Oylr+8qLx49kac= +golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM= +golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.20.0 h1:Od9JTbYCk261bKm4M/mw7AklTlFYIa0bIp9BgSm1S8Y= +golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/text v0.15.0 h1:h1V/4gjBv8v9cjcR6+AR5+/cIYK5N/WAgiv4xlsEtAk= +golang.org/x/text v0.15.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= +golang.org/x/text v0.19.0 h1:kTxAhCbGbxhK0IwgSKiMO5awPoDQ0RpfiVYBfK860YM= +golang.org/x/text v0.19.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= +google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg= +google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gorm.io/driver/mysql v1.5.7 h1:MndhOPYOfEp2rHKgkZIhJ16eVUIRf2HmzgoPmh7FCWo= +gorm.io/driver/mysql v1.5.7/go.mod h1:sEtPWMiqiN1N1cMXoXmBbd8C6/l+TESwriotuRRpkDM= +gorm.io/gorm v1.25.7/go.mod h1:hbnx/Oo0ChWMn1BIhpy1oYozzpM15i4YPuHDmfYtwg8= +gorm.io/gorm v1.25.12 h1:I0u8i2hWQItBq1WfE0o2+WuL9+8L21K9e2HHSTE/0f8= +gorm.io/gorm v1.25.12/go.mod h1:xh7N7RHfYlNc5EmcI/El95gXusucDrQnHXe0+CgWcLQ= +nullprogram.com/x/optparse v1.0.0/go.mod h1:KdyPE+Igbe0jQUrVfMqDMeJQIJZEuyV7pjYmp6pbG50= +rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= diff --git a/handlers/HospitalHandler.go b/handlers/HospitalHandler.go new file mode 100644 index 0000000..9a73a5f --- /dev/null +++ b/handlers/HospitalHandler.go @@ -0,0 +1,58 @@ +package handlers + +import ( + "fmt" + "github.com/gin-gonic/gin" + "health-go/config" + "health-go/models" + "net/http" +) + +func FetchHospitalList(c *gin.Context) { + var hosList []models.Hospital + result := config.DB.Table("hospital").Find(&hosList) + if result.Error != nil { + if result.Error != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "code": 500, + "msg": "内部服务器错误", + "data": nil, + }) + } + return + } + + c.JSON(http.StatusOK, gin.H{ + "code": 200, + "msg": "ok", + "data": hosList, + }) +} + +func AddHospital(c *gin.Context) { + var newHospital models.Hospital + if err := c.ShouldBindJSON(&newHospital); err != nil { + c.JSON(http.StatusBadRequest, gin.H{ + "code": 400, + "msg": "无效的请求参数", + "data": nil, + }) + return + } + result := config.DB.Create(newHospital) + fmt.Println(newHospital) + if result.Error != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "code": 500, + "msg": "内部服务器错误", + "data": nil, + }) + return + } + + c.JSON(http.StatusOK, gin.H{ + "code": 200, + "msg": "添加医院成功", + "data": "", + }) +} diff --git a/handlers/RecordHandler.go b/handlers/RecordHandler.go new file mode 100644 index 0000000..26207aa --- /dev/null +++ b/handlers/RecordHandler.go @@ -0,0 +1,33 @@ +package handlers + +import ( + "github.com/gin-gonic/gin" + "health-go/config" + "health-go/models" + "net/http" +) + +// FetchAllRecords 每个用户全部化验记录 +func FetchAllRecords(c *gin.Context) { + var records []models.Check + result := config.DB.Where("user_id = ?", c.Query("user_id")).Find(&records) + if result.Error != nil { + c.JSON(http.StatusInternalServerError, gin.H{ + "code": 500, + "msg": "内部服务器错误", + "data": nil, + }) + return + } + + c.JSON(http.StatusOK, gin.H{ + "code": 200, + "msg": "ok", + "data": records, + }) +} + +func InsertRecord(c *gin.Context) { + //var aNewRecord models.CheckItem + +} diff --git a/handlers/UserHandler.go b/handlers/UserHandler.go new file mode 100644 index 0000000..d14eeac --- /dev/null +++ b/handlers/UserHandler.go @@ -0,0 +1,39 @@ +package handlers + +import ( + "errors" + "github.com/gin-gonic/gin" + "gorm.io/gorm" + "health-go/config" + "health-go/models" + "net/http" +) + +func FirstUser(c *gin.Context) { + var user models.User + result := config.DB.Where("user_name = ?", "Biid").First(&user) + if result.Error != nil { + if errors.Is(result.Error, gorm.ErrRecordNotFound) { + c.JSON(http.StatusNotFound, gin.H{ + "code": 404, + "msg": "用户未找到", + "data": nil, + }) + } else { + c.JSON(http.StatusInternalServerError, gin.H{ + "code": 500, + "msg": "内部服务器错误", + "data": nil, + }) + } + return + } + + c.JSON(http.StatusOK, gin.H{ + "code": 200, + "msg": "ok", + "data": map[string]interface{}{ + "first_user": user, + }, + }) +} diff --git a/handlers/defaultHandler.go b/handlers/defaultHandler.go new file mode 100644 index 0000000..33ab962 --- /dev/null +++ b/handlers/defaultHandler.go @@ -0,0 +1,13 @@ +package handlers + +import ( + "github.com/gin-gonic/gin" +) + +func TestPage(c *gin.Context) { + c.JSON(200, gin.H{ + "code": 200, + "msg": "test", + "data": map[string]string{"test": "test"}, + }) +} diff --git a/main.go b/main.go new file mode 100644 index 0000000..f9f651f --- /dev/null +++ b/main.go @@ -0,0 +1,24 @@ +package main + +import ( + "health-go/config" + "health-go/routers" + "log" + "strconv" +) + +func main() { + err := config.ReadConfig("config.toml") + if err != nil { + log.Fatalf("无法读取配置文件: %v", err) + } else { + log.Println("配置文件读取成功") + log.Printf("服务端口: %d\n, ", config.Conf.Server.Port) + } + + config.InitDB() + r := routers.SetupRouter() + if err := r.Run(":" + strconv.Itoa(config.Conf.Server.Port)); err != nil { + log.Fatalf("服务启动失败: %v", err) + } +} diff --git a/models/hospital.go b/models/hospital.go new file mode 100644 index 0000000..573270c --- /dev/null +++ b/models/hospital.go @@ -0,0 +1,11 @@ +package models + +type Hospital struct { + HospitalID int `gorm:"column:hospital_id" json:"hospital_id"` + HospitalName string `gorm:"column:hospital_name" json:"hospital_name"` + Address string `gorm:"column:address" json:"address"` +} + +func (Hospital) TableName() string { + return "hospital" +} diff --git a/models/record.go b/models/record.go new file mode 100644 index 0000000..9c42c5d --- /dev/null +++ b/models/record.go @@ -0,0 +1,35 @@ +package models + +type Check struct { + CheckID int `gorm:"column:check_id"` + UserID int `gorm:"column:user_id"` + CheckDate string `gorm:"column:check_date"` + InsertTime string `gorm:"column:insert_time"` + UpdateTime string `gorm:"column:update_time"` +} + +func (Check) TableName() string { + return "checks" +} + +type CheckItem struct { + CheckItemID int `gorm:"column:check_item_id"` + CheckID int `gorm:"column:check_id"` + ItemID int `gorm:"column:item_id"` + ItemValue string `gorm:"column:item_value"` +} + +func (CheckItem) TableName() string { + return "check_items" +} + +type Item struct { + ItemID int `gorm:"column:item_id"` + ItemName string `gorm:"column:item_name"` + ItemNormalMin string `gorm:"column:item_normal_min"` + ItemNormalMax string `gorm:"column:item_normal_max"` +} + +func (Item) TableName() string { + return "items" +} diff --git a/models/user.go b/models/user.go new file mode 100644 index 0000000..4e085dc --- /dev/null +++ b/models/user.go @@ -0,0 +1,17 @@ +package models + +import "time" + +type User struct { + UserID int `gorm:"column:user_id"` + UserName string `gorm:"column:user_name"` + Password string `gorm:"column:password"` + Brth time.Time `gorm:"column:brth"` + Height float32 `gorm:"column:height"` + Tel string `gorm:"column:tel"` + SMSTry int `gorm:"column:SMS_try"` +} + +func (User) TableName() string { + return "user" +} diff --git a/routers/router.go b/routers/router.go new file mode 100644 index 0000000..473ec0f --- /dev/null +++ b/routers/router.go @@ -0,0 +1,22 @@ +package routers + +import ( + "github.com/gin-gonic/gin" + "health-go/handlers" +) + +func SetupRouter() *gin.Engine { + r := gin.Default() + + // user + r.GET("/", handlers.TestPage) + r.GET("/firstUser", handlers.FirstUser) + + // record + r.GET("/fetchHosList", handlers.FetchHospitalList) + r.GET("/fetchAllRec", handlers.FetchAllRecords) + + // hospital + r.POST("/api/addHos", handlers.AddHospital) + return r +}