mirror of
https://github.com/m5stack/StackChan.git
synced 2026-04-28 03:22:39 +00:00
22 lines
589 B
Go
22 lines
589 B
Go
/*
|
|
SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
|
|
SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
// DeviceFriend is the golang structure of table device_friend for DAO operations like Where/Data.
|
|
type DeviceFriend struct {
|
|
g.Meta `orm:"table:device_friend, do:true"`
|
|
MacA any //
|
|
MacB any //
|
|
}
|