report_author.go 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package models
  2. import (
  3. "eta_gn/eta_api/global"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. "time"
  6. )
  7. type ReportAuthor struct {
  8. Id int `gorm:"column:id"` //`orm:"column(id)" description:"报告作者ID"`
  9. ReportAuthor string `gorm:"column:report_author"` //`description:"报告作者名称"`
  10. AuthorType int `gorm:"column:author_type"` //`description:"类型,1:中文;2:英文"`
  11. Enable int `gorm:"column:enable"` //`description:"是否启用,0:禁用,1:启用"`
  12. IsDelete int `gorm:"column:is_delete"` //`description:"是否删除,0:未删除,1:已删除"`
  13. CreateTime time.Time `gorm:"column:create_time"` //`description:"创建时间"`
  14. ModifyTime time.Time `gorm:"column:modify_time"` //`description:"更新时间"`
  15. }
  16. // GetReportAuthorList 获取报告作者列表
  17. func GetReportAuthorList(condition string, pars []interface{}, startSize, pageSize int) (total int, items []*ReportAuthor, err error) {
  18. //o := orm.NewOrmUsingDB("rddp")
  19. baseSql := ` report_author WHERE is_delete=0 `
  20. if condition != "" {
  21. baseSql += condition
  22. }
  23. totalSql := ` SELECT count(1) total FROM ` + baseSql
  24. //err = o.Raw(totalSql, pars).QueryRow(&total)
  25. err = global.DmSQL["rddp"].Raw(totalSql, pars).Scan(&total).Error
  26. if err != nil {
  27. return
  28. }
  29. sql := ` SELECT * FROM ` + baseSql + ` ORDER BY id desc LIMIT ?,? `
  30. // _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  31. err = global.DmSQL["rddp"].Raw(sql, pars, startSize, pageSize).Find(&items).Error
  32. return
  33. }
  34. // GetReportAuthorCount 获取报告作者列表数
  35. func GetReportAuthorCount(condition string, pars []interface{}) (total int, err error) {
  36. //o := orm.NewOrmUsingDB("rddp")
  37. totalSql := ` SELECT count(1) total FROM report_author WHERE 1=1 `
  38. if condition != "" {
  39. totalSql += condition
  40. }
  41. //err = o.Raw(totalSql, pars).QueryRow(&total)
  42. err = global.DmSQL["rddp"].Raw(totalSql, pars).Scan(&total).Error
  43. return
  44. }
  45. type ReportAuthorResp struct {
  46. List []*ReportAuthor
  47. Paging *paging.PagingItem `description:"分页数据"`
  48. }
  49. // AddReportAuthorReq 新增报告作者请求体
  50. type AddReportAuthorReq struct {
  51. Id int `description:"作者id"`
  52. AuthorType int `description:"类型,1:中文;2:英文"`
  53. Author string `description:"报告作者名称"`
  54. }
  55. // GetReportAuthorById 根据作者id获取数据
  56. func GetReportAuthorById(authorId int) (item *ReportAuthor, err error) {
  57. //o := orm.NewOrmUsingDB("rddp")
  58. sql := `SELECT * FROM report_author WHERE is_delete=0 AND id = ? `
  59. //err = o.Raw(sql, authorId).QueryRow(&item)
  60. err = global.DmSQL["rddp"].Raw(sql, authorId).First(&item).Error
  61. return
  62. }
  63. // GetReportAuthorByAuthor 根据作者名称获取数据
  64. func GetReportAuthorByAuthor(title string, authorType int) (item *ReportAuthor, err error) {
  65. //o := orm.NewOrmUsingDB("rddp")
  66. sql := `SELECT * FROM report_author WHERE is_delete=0 AND report_author=? AND author_type = ? `
  67. //err = o.Raw(sql, title, authorType).QueryRow(&item)
  68. err = global.DmSQL["rddp"].Raw(sql, title, authorType).First(&item).Error
  69. return
  70. }
  71. // GetReportAuthorByAuthorAndId 根据作者名称和作者id获取数据
  72. func GetReportAuthorByAuthorAndId(title string, authorType, authorId int) (item *ReportAuthor, err error) {
  73. //o := orm.NewOrmUsingDB("rddp")
  74. sql := `SELECT * FROM report_author WHERE is_delete=0 AND report_author=? AND author_type = ? AND id != ? `
  75. //err = o.Raw(sql, title, authorType, authorId).QueryRow(&item)
  76. err = global.DmSQL["rddp"].Raw(sql, title, authorType, authorId).First(&item).Error
  77. return
  78. }
  79. // AddReportAuthor 新增作者
  80. func AddReportAuthor(item *ReportAuthor) (lastId int64, err error) {
  81. //o := orm.NewOrmUsingDB("rddp")
  82. //lastId, err = o.Insert(item)
  83. err = global.DmSQL["rddp"].Create(item).Error
  84. lastId = int64(item.Id)
  85. return
  86. }
  87. // Update 更新作者基础信息
  88. func (item *ReportAuthor) Update(cols []string) (err error) {
  89. //o := orm.NewOrmUsingDB("rddp")
  90. //_, err = o.Update(item, cols...)
  91. err = global.DmSQL["rddp"].Select(cols).Updates(item).Error
  92. return
  93. }
  94. // EnableReportAuthorReq 启用/禁用报告作者请求体
  95. type EnableReportAuthorReq struct {
  96. Id int `description:"作者id"`
  97. EnableType int `description:"是否启用,0:禁用,1:启用"`
  98. }
  99. // DeleteReportAuthorReq 删除报告作者请求体
  100. type DeleteReportAuthorReq struct {
  101. Id int `description:"作者id"`
  102. }