| 123456789101112131415161718192021222324252627282930313233 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // MeetingReservation is the golang structure for table meeting_reservation.
- type MeetingReservation struct {
- Id uint `orm:"Id,primary" json:"id"` // 主键ID
- CreatedBy string `orm:"CreatedBy" json:"createdBy"` // 创建人姓名
- CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
- UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
- UpdatedBy string `orm:"UpdatedBy" json:"updatedBy"` // 更新人姓名
- DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
- UpdatedById int `orm:"UpdatedById" json:"updatedById"` // 更新人ID
- CreatedById int `orm:"CreatedById" json:"createdById"` // 创建人ID
- Title string `orm:"Title" json:"title"` // 标题
- StartTime *gtime.Time `orm:"StartTime" json:"startTime"` // 开始时间
- EndTime *gtime.Time `orm:"EndTime" json:"endTime"` // 结束时间
- UserId int `orm:"UserId" json:"userId"` // 预约人
- DepartmentId int `orm:"DepartmentId" json:"departmentId"` // 部门
- Remark string `orm:"Remark" json:"remark"` // 备注
- EntityId int `orm:"EntityId" json:"entityId"` // 关联ID
- SignInTime *gtime.Time `orm:"SignInTime" json:"signInTime"` // 签到时间
- SignOutTime *gtime.Time `orm:"SignOutTime" json:"signOutTime"` // 签退时间
- RealityUseDuration float64 `orm:"RealityUseDuration" json:"realityUseDuration"` // 实际使用时长
- UserName string `orm:"UserName" json:"userName"` // 预约人姓名
- Status int `orm:"Status" json:"status"` // 预约状态(1:预定 2:取消)
- }
|