| 12345678910111213141516171819202122232425262728 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // Meeting is the golang structure for table meeting.
- type Meeting struct {
- Id int `orm:"Id" json:"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
- Code string `orm:"Code" json:"code"` // 会议室编码
- Name string `orm:"Name" json:"name"` // 会议室名称
- ImgUrl string `orm:"ImgUrl" json:"img_url"` // 图片Url
- Sort int `orm:"Sort" json:"sort"` // 排序
- Scale int `orm:"Scale" json:"scale"` // 规模/可容纳人数
- Remark string `orm:"Remark" json:"remark"` // 备注/说明
- Location string `orm:"Location" json:"location"` // 位置
- }
|