meeting.go 1.6 KB

12345678910111213141516171819202122232425262728
  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. // Meeting is the golang structure for table meeting.
  9. type Meeting struct {
  10. Id int `orm:"Id,primary" json:"id"` //
  11. CreatedBy string `orm:"CreatedBy" json:"created_by"` // 创建人姓名
  12. CreatedAt *gtime.Time `orm:"CreatedAt" json:"created_at"` // 创建时间
  13. UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updated_at"` // 更新时间
  14. UpdatedBy string `orm:"UpdatedBy" json:"updated_by"` // 更新人姓名
  15. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deleted_at"` // 删除时间
  16. UpdatedById int `orm:"UpdatedById" json:"updated_by_id"` // 更新人ID
  17. CreatedById int `orm:"CreatedById" json:"created_by_id"` // 创建人ID
  18. Code string `orm:"Code" json:"code"` // 会议室编码
  19. Name string `orm:"Name" json:"name"` // 会议室名称
  20. ImgUrl string `orm:"ImgUrl" json:"img_url"` // 图片Url
  21. Sort int `orm:"Sort" json:"sort"` // 排序
  22. Scale int `orm:"Scale" json:"scale"` // 规模/可容纳人数
  23. Remark string `orm:"Remark" json:"remark"` // 备注/说明
  24. Location string `orm:"Location" json:"location"` // 位置
  25. }