consequent_detail.go 5.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. // ConsequentDetail is the golang structure for table consequent_detail.
  9. type ConsequentDetail 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. CreatedById int `orm:"CreatedById" json:"createdById"` // 创建人ID
  17. UpdatedById int `orm:"UpdatedById" json:"updatedById"` // 更新人ID
  18. ConsequentId int `orm:"ConsequentId" json:"consequentId"` // 成果ID
  19. HonorName string `orm:"HonorName" json:"honorName"` // 获奖名称
  20. HonorTime string `orm:"HonorTime" json:"honorTime"` // 获奖日期
  21. HonorOrganization string `orm:"HonorOrganization" json:"honorOrganization"` // 颁奖单位
  22. HonorLevel string `orm:"HonorLevel" json:"honorLevel"` // 获奖级别
  23. HonorOwner string `orm:"HonorOwner" json:"honorOwner"` // 获奖人员
  24. SocietyDepartment string `orm:"SocietyDepartment" json:"societyDepartment"` // 学会任职科室
  25. SocietyExpertName string `orm:"SocietyExpertName" json:"societyExpertName"` // 专家姓名
  26. SocietyOrganization string `orm:"SocietyOrganization" json:"societyOrganization"` // 任职学术机构名称
  27. SocietyPosition string `orm:"SocietyPosition" json:"societyPosition"` // 担任职务
  28. SocietyArea string `orm:"SocietyArea" json:"societyArea"` // 机构所在地区
  29. SocietyYears string `orm:"SocietyYears" json:"societyYears"` // 任职年限
  30. SocietyElectionTime string `orm:"SocietyElectionTime" json:"societyElectionTime"` // 职务当选时间
  31. SocietyNature string `orm:"SocietyNature" json:"societyNature"` // 是否科协所属
  32. SocietyType string `orm:"SocietyType" json:"societyType"` // 院内学会类别
  33. SocietyOrganizationLevel string `orm:"SocietyOrganizationLevel" json:"societyOrganizationLevel"` // 院内级别
  34. SocietyPositionLevel string `orm:"SocietyPositionLevel" json:"societyPositionLevel"` // 职务类别
  35. SocietyOfFirst string `orm:"SocietyOfFirst" json:"societyOfFirst"` // 归属一级学会
  36. SocietySecondary string `orm:"SocietySecondary" json:"societySecondary"` // 二级学会
  37. ProjectName string `orm:"ProjectName" json:"projectName"` // 项目名称
  38. ProjectLevel string `orm:"ProjectLevel" json:"projectLevel"` // 级别
  39. ProjectType string `orm:"ProjectType" json:"projectType"` // 项目类别
  40. ProjectTime string `orm:"ProjectTime" json:"projectTime"` // 资助时间
  41. ProjectFund string `orm:"ProjectFund" json:"projectFund"` // 经费
  42. ProjectManager string `orm:"ProjectManager" json:"projectManager"` // 负责人
  43. ProjectParticipant string `orm:"ProjectParticipant" json:"projectParticipant"` // 参与者
  44. PaperTopic string `orm:"PaperTopic" json:"paperTopic"` // 论文题目
  45. PaperAuthor string `orm:"PaperAuthor" json:"paperAuthor"` // 作者
  46. PaperCorrespondingAuthor string `orm:"PaperCorrespondingAuthor" json:"paperCorrespondingAuthor"` // 通讯作者
  47. PaperIssuingTime string `orm:"PaperIssuingTime" json:"paperIssuingTime"` // 发表时间
  48. PaperVolume string `orm:"PaperVolume" json:"paperVolume"` // 卷期
  49. PaperPage string `orm:"PaperPage" json:"paperPage"` // 页码
  50. PaperMagazineName string `orm:"PaperMagazineName" json:"paperMagazineName"` // 杂志名称
  51. PaperSubsidyFund string `orm:"PaperSubsidyFund" json:"paperSubsidyFund"` // 资助基金
  52. PatentName string `orm:"PatentName" json:"patentName"` // 专利名称
  53. PatentAuthor string `orm:"PatentAuthor" json:"patentAuthor"` // 申请人
  54. PatentAuthorizationTime string `orm:"PatentAuthorizationTime" json:"patentAuthorizationTime"` // 授权时间
  55. }