consequent.go 1.5 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. // Consequent is the golang structure for table consequent.
  9. type Consequent struct {
  10. Id int `orm:"Id,primary" json:"id"` // 主键ID
  11. CreatedBy string `orm:"CreatedBy" json:"createdBy"` // 创建人
  12. CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
  13. UpdatedBy string `orm:"UpdatedBy" json:"updatedBy"` // 更新人
  14. UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
  15. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
  16. Name string `orm:"Name" json:"name"` // 成果名称
  17. Type int `orm:"Type" json:"type"` // 成果类型
  18. Code string `orm:"Code" json:"code"` // 成果编号
  19. OwnersId string `orm:"OwnersId" json:"ownersId"` // 获得者
  20. OwnersName string `orm:"OwnersName" json:"ownersName"` // 获得者名称
  21. MediaIds string `orm:"MediaIds" json:"media_ids"` // 成果附件Id
  22. PublishTime *gtime.Time `orm:"PublishTime" json:"publishTime"` // 获得时间
  23. ProjectId int `orm:"ProjectId" json:"projectId"` // 项目ID
  24. ProjectName string `orm:"ProjectName" json:"projectName"` // 项目名称
  25. }