meeting_reservation.go 2.4 KB

123456789101112131415161718192021222324252627282930313233
  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. // MeetingReservation is the golang structure for table meeting_reservation.
  9. type MeetingReservation struct {
  10. Id uint `orm:"Id,primary" json:"id"` // 主键ID
  11. CreatedBy string `orm:"CreatedBy" json:"createdBy"` // 创建人姓名
  12. CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
  13. UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
  14. UpdatedBy string `orm:"UpdatedBy" json:"updatedBy"` // 更新人姓名
  15. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
  16. UpdatedById int `orm:"UpdatedById" json:"updatedById"` // 更新人ID
  17. CreatedById int `orm:"CreatedById" json:"createdById"` // 创建人ID
  18. Title string `orm:"Title" json:"title"` // 标题
  19. StartTime *gtime.Time `orm:"StartTime" json:"startTime"` // 开始时间
  20. EndTime *gtime.Time `orm:"EndTime" json:"endTime"` // 结束时间
  21. UserId int `orm:"UserId" json:"userId"` // 预约人
  22. DepartmentId int `orm:"DepartmentId" json:"departmentId"` // 部门
  23. Remark string `orm:"Remark" json:"remark"` // 备注
  24. EntityId int `orm:"EntityId" json:"entityId"` // 关联ID
  25. SignInTime *gtime.Time `orm:"SignInTime" json:"signInTime"` // 签到时间
  26. SignOutTime *gtime.Time `orm:"SignOutTime" json:"signOutTime"` // 签退时间
  27. RealityUseDuration float64 `orm:"RealityUseDuration" json:"realityUseDuration"` // 实际使用时长
  28. UserName string `orm:"UserName" json:"userName"` // 预约人姓名
  29. Status int `orm:"Status" json:"status"` // 预约状态(1:预定 2:取消)
  30. }