| 12345678910111213141516171819202122232425262728 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // Consequent is the golang structure for table consequent.
- type Consequent struct {
- Id int `orm:"Id,primary" json:"id"` // 主键ID
- CreatedBy string `orm:"CreatedBy" json:"createdBy"` // 创建人
- CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
- UpdatedBy string `orm:"UpdatedBy" json:"updatedBy"` // 更新人
- UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
- DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
- Name string `orm:"Name" json:"name"` // 成果名称
- Type int `orm:"Type" json:"type"` // 成果类型
- Code string `orm:"Code" json:"code"` // 成果编号
- OwnersId string `orm:"OwnersId" json:"ownersId"` // 获得者
- OwnersName string `orm:"OwnersName" json:"ownersName"` // 获得者名称
- MediaIds string `orm:"MediaIds" json:"media_ids"` // 成果附件Id
- PublishTime *gtime.Time `orm:"PublishTime" json:"publishTime"` // 获得时间
- ProjectId int `orm:"ProjectId" json:"projectId"` // 项目ID
- ProjectName string `orm:"ProjectName" json:"projectName"` // 项目名称
- }
|