| 123456789101112131415161718192021 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // AccessPath is the golang structure for table access_path.
- type AccessPath struct {
- Id int `orm:"Id,primary" json:"id"` // Id
- ObjId string `orm:"ObjId" json:"objId"` // 设备ID或房间ID(实验室)
- ObjName string `orm:"ObjName" json:"objName"` // 设备名称或房间名称(实验室)
- ObjType int `orm:"ObjType" json:"objType"` // 对象类型 0 仪器设备 1房间(实验室)
- LockId string `orm:"LockId" json:"lockId"` // 门禁ID
- CreatedById int `orm:"CreatedById" json:"createdById"` // 创建人ID
- CreatedBy string `orm:"CreatedBy" json:"createdBy"` // 创建人
- CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
- }
|