6
0

access_path.go 1.1 KB

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