34 lines
1.6 KiB
Go
34 lines
1.6 KiB
Go
|
// ==========================================================================
|
|||
|
// GFast自动生成model entity操作代码。
|
|||
|
// 生成日期:2024-03-01 12:49:32
|
|||
|
// 生成路径: internal/app/system/model/entity/ys7devices.go
|
|||
|
// 生成人:gfast
|
|||
|
// desc:荧石摄像头
|
|||
|
// company:云南奇讯科技有限公司
|
|||
|
// ==========================================================================
|
|||
|
|
|||
|
package do
|
|||
|
|
|||
|
import (
|
|||
|
"github.com/gogf/gf/v2/os/gtime"
|
|||
|
"github.com/gogf/gf/v2/util/gmeta"
|
|||
|
)
|
|||
|
|
|||
|
// Ys7Devices is the golang structure for table ys7devices.
|
|||
|
type Ys7Devices struct {
|
|||
|
gmeta.Meta `orm:"table:ys7devices, do:true"`
|
|||
|
Id interface{} `orm:"id,primary" json:"id"` // id
|
|||
|
CreatedAt *gtime.Time `orm:"created_at" json:"createdAt"` //
|
|||
|
DeviceSerial interface{} `orm:"DeviceSerial" json:"deviceSerial"` // 设备串号
|
|||
|
DeviceName interface{} `orm:"DeviceName" json:"deviceName"` // 设备名称
|
|||
|
DeviceType interface{} `orm:"DeviceType" json:"deviceType"` // 设备类型
|
|||
|
Status interface{} `orm:"Status" json:"status"` // 状态
|
|||
|
Defence interface{} `orm:"Defence" json:"defence"` //
|
|||
|
DeviceVersion interface{} `orm:"DeviceVersion" json:"deviceVersion"` // 设备版本
|
|||
|
ProjectId interface{} `orm:"ProjectId" json:"projectId"` // 项目ID
|
|||
|
Detail interface{} `orm:"Detail" json:"detail"` // 详情
|
|||
|
Position interface{} `orm:"Position" json:"position"` // 位置
|
|||
|
ReMark interface{} `orm:"Remark" json:"remark"` // 备注
|
|||
|
Sort interface{} `orm:"Sort" json:"sort"` // 备注
|
|||
|
}
|