摘要:
package main import ( "github.com/gin-gonic/gin" "html/template" "net/http" "time" ) type Address struct { Mobile string Email string } type News stru 阅读全文
摘要:
package main import ( "github.com/gin-gonic/gin" "net/http" ) type Article struct { Id int `json:"id"` Title string `json:"title"` } func main() { // 阅读全文