mirror of
https://github.com/m5stack/StackChan.git
synced 2026-05-20 11:49:45 -07:00
feat(server): deliver major backend expansion with v2 APIs, AI integration, and realtime infrastructure (#36)
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
|
||||
SPDX-License-Identifier: MIT
|
||||
*/
|
||||
|
||||
package model
|
||||
|
||||
import "github.com/gogf/gf/v2/os/gtime"
|
||||
|
||||
type AppInfo struct {
|
||||
Id int64 `json:"id" orm:"id" description:""` // App ID
|
||||
AppName string `json:"appName" orm:"app_name" description:"App name"` // App name
|
||||
AppIconUrl string `json:"appIconUrl" orm:"app_icon_url" description:"App icon URL"` // App icon URL
|
||||
Description string `json:"description" orm:"description" description:"App description"` // App description
|
||||
FirmwareUrl string `json:"firmwareUrl" orm:"firmware_url" description:"Firmware / installation package download URL"` // Firmware / installation package download URL
|
||||
CreateAt *gtime.Time `json:"createAt" orm:"create_at" description:"Creation time"` // Creation time
|
||||
UpdateAt *gtime.Time `json:"updateAt" orm:"update_at" description:"Update time"` // Update time
|
||||
}
|
||||
Reference in New Issue
Block a user