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:
@@ -1,3 +1,8 @@
|
||||
/*
|
||||
SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
|
||||
SPDX-License-Identifier: MIT
|
||||
*/
|
||||
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
@@ -10,10 +15,11 @@ import (
|
||||
|
||||
// DeviceDance is the golang structure for table device_dance.
|
||||
type DeviceDance struct {
|
||||
Id int64 `json:"id" orm:"id" description:""` //
|
||||
Mac string `json:"mac" orm:"mac" description:"设备MAC地址"` // 设备MAC地址
|
||||
DanceIndex int `json:"danceIndex" orm:"dance_index" description:"舞蹈编号,初始为1~3,可扩展"` // 舞蹈编号,初始为1~3,可扩展
|
||||
DanceData string `json:"danceData" orm:"dance_data" description:"MotionData"` // MotionData
|
||||
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:""` //
|
||||
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:""` //
|
||||
Id int64 `json:"id" orm:"id" description:""` //
|
||||
Mac string `json:"mac" orm:"mac" description:"Device MAC address"` // Device MAC address
|
||||
DanceName string `json:"danceName" orm:"dance_name" description:"Dance name"` // Dance name
|
||||
DanceData string `json:"danceData" orm:"dance_data" description:"MotionData"` // MotionData
|
||||
MusicUrl string `json:"musicUrl" orm:"music_url" description:"Dance background music URL"` // Dance background music URL
|
||||
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:""` //
|
||||
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:""` //
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user