| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // ConsequentDetail is the golang structure for table consequent_detail.
- type ConsequentDetail 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"` // 删除时间
- CreatedById int `orm:"CreatedById" json:"createdById"` // 创建人ID
- UpdatedById int `orm:"UpdatedById" json:"updatedById"` // 更新人ID
- ConsequentId int `orm:"ConsequentId" json:"consequentId"` // 成果ID
- HonorName string `orm:"HonorName" json:"honorName"` // 获奖名称
- HonorTime string `orm:"HonorTime" json:"honorTime"` // 获奖日期
- HonorOrganization string `orm:"HonorOrganization" json:"honorOrganization"` // 颁奖单位
- HonorLevel string `orm:"HonorLevel" json:"honorLevel"` // 获奖级别
- HonorOwner string `orm:"HonorOwner" json:"honorOwner"` // 获奖人员
- SocietyDepartment string `orm:"SocietyDepartment" json:"societyDepartment"` // 学会任职科室
- SocietyExpertName string `orm:"SocietyExpertName" json:"societyExpertName"` // 专家姓名
- SocietyOrganization string `orm:"SocietyOrganization" json:"societyOrganization"` // 任职学术机构名称
- SocietyPosition string `orm:"SocietyPosition" json:"societyPosition"` // 担任职务
- SocietyArea string `orm:"SocietyArea" json:"societyArea"` // 机构所在地区
- SocietyYears string `orm:"SocietyYears" json:"societyYears"` // 任职年限
- SocietyElectionTime string `orm:"SocietyElectionTime" json:"societyElectionTime"` // 职务当选时间
- SocietyNature string `orm:"SocietyNature" json:"societyNature"` // 是否科协所属
- SocietyType string `orm:"SocietyType" json:"societyType"` // 院内学会类别
- SocietyOrganizationLevel string `orm:"SocietyOrganizationLevel" json:"societyOrganizationLevel"` // 院内级别
- SocietyPositionLevel string `orm:"SocietyPositionLevel" json:"societyPositionLevel"` // 职务类别
- SocietyOfFirst string `orm:"SocietyOfFirst" json:"societyOfFirst"` // 归属一级学会
- SocietySecondary string `orm:"SocietySecondary" json:"societySecondary"` // 二级学会
- ProjectName string `orm:"ProjectName" json:"projectName"` // 项目名称
- ProjectLevel string `orm:"ProjectLevel" json:"projectLevel"` // 级别
- ProjectType string `orm:"ProjectType" json:"projectType"` // 项目类别
- ProjectTime string `orm:"ProjectTime" json:"projectTime"` // 资助时间
- ProjectFund string `orm:"ProjectFund" json:"projectFund"` // 经费
- ProjectManager string `orm:"ProjectManager" json:"projectManager"` // 负责人
- ProjectParticipant string `orm:"ProjectParticipant" json:"projectParticipant"` // 参与者
- PaperTopic string `orm:"PaperTopic" json:"paperTopic"` // 论文题目
- PaperAuthor string `orm:"PaperAuthor" json:"paperAuthor"` // 作者
- PaperCorrespondingAuthor string `orm:"PaperCorrespondingAuthor" json:"paperCorrespondingAuthor"` // 通讯作者
- PaperIssuingTime string `orm:"PaperIssuingTime" json:"paperIssuingTime"` // 发表时间
- PaperVolume string `orm:"PaperVolume" json:"paperVolume"` // 卷期
- PaperPage string `orm:"PaperPage" json:"paperPage"` // 页码
- PaperMagazineName string `orm:"PaperMagazineName" json:"paperMagazineName"` // 杂志名称
- PaperSubsidyFund string `orm:"PaperSubsidyFund" json:"paperSubsidyFund"` // 资助基金
- PatentName string `orm:"PatentName" json:"patentName"` // 专利名称
- PatentAuthor string `orm:"PatentAuthor" json:"patentAuthor"` // 申请人
- PatentAuthorizationTime string `orm:"PatentAuthorizationTime" json:"patentAuthorizationTime"` // 授权时间
- }
|