2026-04-29 18:49:54 +08:00
|
|
|
/*
|
|
|
|
|
SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
|
|
|
|
|
SPDX-License-Identifier: MIT
|
|
|
|
|
*/
|
|
|
|
|
|
2026-01-07 18:04:01 +08:00
|
|
|
// =================================================================================
|
|
|
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
|
|
|
// =================================================================================
|
|
|
|
|
|
|
|
|
|
package entity
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// DevicePostComment is the golang structure for table device_post_comment.
|
|
|
|
|
type DevicePostComment struct {
|
2026-04-29 18:49:54 +08:00
|
|
|
Id int64 `json:"id" orm:"id" description:""` //
|
|
|
|
|
PostId int64 `json:"postId" orm:"post_id" description:"Post ID"` // Post ID
|
|
|
|
|
Mac string `json:"mac" orm:"mac" description:"Comment device MAC"` // Comment device MAC
|
|
|
|
|
Content string `json:"content" orm:"content" description:""` //
|
|
|
|
|
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"Comment time"` // Comment time
|
2026-01-07 18:04:01 +08:00
|
|
|
}
|