| 12345678910111213141516171819202122232425262728293031323334 |
- // ==========================================================================
- // 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:"created_by"` // 创建人姓名
- CreatedAt *gtime.Time `orm:"CreatedAt" json:"created_at"` // 创建时间
- UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updated_at"` // 更新时间
- UpdatedBy string `orm:"UpdatedBy" json:"updated_by"` // 更新人姓名
- DeletedAt *gtime.Time `orm:"DeletedAt" json:"deleted_at"` // 删除时间
- UpdatedById int `orm:"UpdatedById" json:"updated_by_id"` // 更新人ID
- CreatedById int `orm:"CreatedById" json:"created_by_id"` // 创建人ID
- Title string `orm:"Title" json:"title"` // 标题
- StartTime *gtime.Time `orm:"StartTime" json:"start_time"` // 开始时间
- EndTime *gtime.Time `orm:"EndTime" json:"end_time"` // 结束时间
- UserId int `orm:"UserId" json:"user_id"` // 预约人
- DepartmentId int `orm:"DepartmentId" json:"department_id"` // 部门
- Remark string `orm:"Remark" json:"remark"` // 备注
- EntityId int `orm:"EntityId" json:"entity_id"` // 关联ID
- SignInTime *gtime.Time `orm:"SignInTime" json:"sign_in_time"` // 签到时间
- SignOutTime *gtime.Time `orm:"SignOutTime" json:"sign_out_time"` // 签退时间
- RealityUseDuration float64 `orm:"RealityUseDuration" json:"reality_use_duration"` // 实际使用时长
- UserName string `orm:"UserName" json:"user_name"` // 预约人姓名
- Status int `orm:"Status" json:"status"` // 预约状态(1:预定 2:取消)
- RealEndTimeNode *gtime.Time `orm:"RealEndTimeNode" json:"real_end_time_node"` // 实际结束时间节点(用于增加预约时的校验)
- }
|