| 12345678910111213141516171819 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // UserLockaccess is the golang structure for table user_lockaccess.
- type UserLockaccess struct {
- Id int `orm:"Id,primary" json:"id"` // Id
- LockId string `orm:"LockId" json:"lockId"` // 门禁ID
- UserId int `orm:"UserId" json:"userId"` // 人员ID
- CreatedById int `orm:"CreatedById" json:"createdById"` // 创建人ID
- CreatedBy string `orm:"CreatedBy" json:"createdBy"` // 创建人
- CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
- }
|