bi/model/debug_device.go

11 lines
337 B
Go
Raw Permalink Normal View History

2022-01-26 16:40:50 +08:00
package model
type DebugDevice struct {
Id int `db:"id" json:"id"`
Appid int `db:"appid" json:"appid"`
DeviceId string `db:"device_id" json:"device_id"`
Remark string `db:"remark" json:"remark"`
CreateBy int `db:"create_by" json:"create_by"`
CreateTime string `db:"create_time" json:"create_time"`
}