6
0

user_lockaccess.go 850 B

12345678910111213141516171819
  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. // UserLockaccess is the golang structure for table user_lockaccess.
  9. type UserLockaccess struct {
  10. Id int `orm:"Id,primary" json:"id"` // Id
  11. LockId string `orm:"LockId" json:"lockId"` // 门禁ID
  12. UserId int `orm:"UserId" json:"userId"` // 人员ID
  13. CreatedById int `orm:"CreatedById" json:"createdById"` // 创建人ID
  14. CreatedBy string `orm:"CreatedBy" json:"createdBy"` // 创建人
  15. CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
  16. }