classify.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "hongze/hz_crm_api/utils"
  5. "time"
  6. )
  7. type Classify struct {
  8. Id int `orm:"column(id);pk"`
  9. ClassifyName string `description:"分类名称"`
  10. Sort int `json:"-"`
  11. ParentId int `description:"父级分类id"`
  12. CreateTime time.Time `description:"创建时间"`
  13. ModifyTime time.Time `description:"修改时间"`
  14. Abstract string `description:"栏目简介"`
  15. Descript string `description:"分享描述"`
  16. ReportAuthor string `description:"栏目作者"`
  17. AuthorDescript string `description:"作者简介"`
  18. ColumnImgUrl string `description:"栏目配图"`
  19. HeadImgUrl string `description:"头部banner"`
  20. AvatarImgUrl string `description:"头像"`
  21. ReportImgUrl string `description:"报告配图"`
  22. HomeImgUrl string `description:"首页配图"`
  23. ClassifyLabel string `description:"分类标签"`
  24. ShowType int `description:"展示类型:1-列表 2-专栏"`
  25. HasTeleconference int `description:"是否有电话会:0-否 1-是"`
  26. VipTitle string `description:"研究员头衔"`
  27. IsShow int `description:"是否在小程序显示:1-显示 0-隐藏"`
  28. YbFiccSort int `description:"小程序FICC页排序"`
  29. YbFiccIcon string `description:"小程序FICC页icon"`
  30. YbFiccPcIcon string `description:"小程序PC端FICC页背景图"`
  31. YbIconUrl string `description:"小程序已购页icon"`
  32. YbBgUrl string `description:"小程序已购详情背景图"`
  33. YbListImg string `description:"小程序研报列表封面图"`
  34. YbShareBgImg string `description:"小程序研报详情分享背景图"`
  35. YbRightBanner string `description:"Pc端详情页,右侧,报告合集背景图"`
  36. RelateTel int `description:"是否在电话会中可选: 0-否; 1-是"`
  37. RelateVideo int `description:"是否在路演视频中可选: 0-否; 1-是"`
  38. IsMassSend int `description:"1:群发,0:非群发"`
  39. Enabled int `description:"是否可用,1可用,0禁用"`
  40. Level int `description:"层级"`
  41. HasChild int `description:"是否有子级别,0:下面没有子分类,1:下面有子分类;默认:0"`
  42. }
  43. func GetClassifyById(classifyId int) (item *Classify, err error) {
  44. sql := `SELECT * FROM classify WHERE id=? `
  45. o := orm.NewOrmUsingDB("rddp")
  46. err = o.Raw(sql, classifyId).QueryRow(&item)
  47. return
  48. }
  49. type ClassifyList struct {
  50. Id int `orm:"column(id);pk"`
  51. ClassifyName string `description:"分类名称"`
  52. Sort int `description:"排序"`
  53. ParentId int `description:"父级分类id"`
  54. CreateTime time.Time `description:"创建时间"`
  55. ModifyTime time.Time `description:"修改时间"`
  56. Abstract string `description:"简介"`
  57. Descript string `description:"描述"`
  58. ClassifyLabel string `description:"分类标签"`
  59. ShowType int `description:"展示类型:1-列表 2-专栏"`
  60. HasTeleconference int `description:"是否有电话会:0-否 1-是"`
  61. IsShow int `description:"是否在小程序显示:1-显示 0-隐藏"`
  62. YbFiccSort int `description:"小程序FICC页排序"`
  63. YbFiccIcon string `description:"小程序FICC页icon"`
  64. YbFiccPcIcon string `description:"小程序PC端FICC页背景图"`
  65. YbIconUrl string `description:"小程序已购页icon"`
  66. YbBgUrl string `description:"小程序已购详情背景图"`
  67. YbListImg string `description:"小程序研报列表封面图"`
  68. YbShareBgImg string `description:"小程序研报详情分享背景图"`
  69. YbRightBanner string `description:"Pc端详情页,右侧,报告合集背景图"`
  70. RelateTel int `description:"是否在电话会中可选: 0-否; 1-是"`
  71. RelateVideo int `description:"是否在路演视频中可选: 0-否; 1-是"`
  72. Enabled int `description:"是否可用,1可用,0禁用"`
  73. Child []*ClassifyItem
  74. ClassifyMenuList []*ClassifyMenu
  75. }
  76. type ClassifyItem struct {
  77. Classify
  78. ClassifyMenuId int `description:"二级分类-子目录ID"`
  79. ClassifyMenuList []*ClassifyMenu
  80. }
  81. type ClassifyListResp struct {
  82. List []*ClassifyListV2
  83. }
  84. type ClassifyListV2 struct {
  85. Id int `orm:"column(id);pk"`
  86. ClassifyName string `description:"分类名称"`
  87. Sort int `description:"排序"`
  88. ParentId int `description:"父级分类id"`
  89. CreateTime time.Time `description:"创建时间"`
  90. ModifyTime time.Time `description:"修改时间"`
  91. Abstract string `description:"简介"`
  92. Descript string `description:"描述"`
  93. ClassifyLabel string `description:"分类标签"`
  94. ShowType int `description:"展示类型:1-列表 2-专栏"`
  95. HasTeleconference int `description:"是否有电话会:0-否 1-是"`
  96. IsShow int `description:"是否在小程序显示:1-显示 0-隐藏"`
  97. YbFiccSort int `description:"小程序FICC页排序"`
  98. YbFiccIcon string `description:"小程序FICC页icon"`
  99. YbFiccPcIcon string `description:"小程序PC端FICC页背景图"`
  100. YbIconUrl string `description:"小程序已购页icon"`
  101. YbBgUrl string `description:"小程序已购详情背景图"`
  102. YbListImg string `description:"小程序研报列表封面图"`
  103. YbShareBgImg string `description:"小程序研报详情分享背景图"`
  104. YbRightBanner string `description:"Pc端详情页,右侧,报告合集背景图"`
  105. RelateTel int `description:"是否在电话会中可选: 0-否; 1-是"`
  106. RelateVideo int `description:"是否在路演视频中可选: 0-否; 1-是"`
  107. Enabled int `description:"是否可用,1可用,0禁用"`
  108. Child []*ClassifyListV2 `gorm:"-"`
  109. ClassifyMenuId int `description:"二级分类-子目录ID"`
  110. ClassifyMenuList []*ClassifyMenu `gorm:"-"`
  111. ChartPermissionIdList []int `description:"绑定的权限ID" gorm:"-"`
  112. Level int `description:"层级"`
  113. HasChild int `description:"是否有子级别,0:下面没有子分类,1:下面有子分类;默认:0"`
  114. }
  115. // 获取分类列表
  116. func GetClassifyList(startSize, pageSize int, keyWord, companyType string, hideDayWeek int) (items []*ClassifyList, err error) {
  117. sql := ``
  118. companyTypeSqlStr := ``
  119. if companyType == "ficc" {
  120. companyTypeSqlStr = " AND id != 40 AND parent_id != 40 "
  121. } else if companyType == "权益" {
  122. companyTypeSqlStr = " AND (id = 40 or parent_id = 40) "
  123. }
  124. if keyWord != "" {
  125. sql = `SELECT * FROM (
  126. SELECT * FROM classify
  127. WHERE parent_id=0 ` + companyTypeSqlStr + ` AND classify_name LIKE '%` + keyWord + `%'
  128. UNION
  129. SELECT * FROM classify
  130. WHERE id IN(SELECT parent_id FROM classify
  131. WHERE parent_id>0 ` + companyTypeSqlStr + ` AND classify_name LIKE '%` + keyWord + `%')
  132. )AS t
  133. ORDER BY sort ASC,create_time ASC
  134. LIMIT ?,? `
  135. } else {
  136. sql = `SELECT * FROM classify WHERE parent_id=0 ` + companyTypeSqlStr
  137. if hideDayWeek == 1 {
  138. sql += ` AND classify_name <> '晨报' AND classify_name <> '周报' `
  139. }
  140. sql += ` ORDER BY sort ASC, create_time ASC LIMIT ?,? `
  141. }
  142. o := orm.NewOrmUsingDB("rddp")
  143. _, err = o.Raw(sql, startSize, pageSize).QueryRows(&items)
  144. return
  145. }
  146. func GetClassifyListCount(keyWord, companyType string, hideDayWeek int) (count int, err error) {
  147. sqlCount := ``
  148. companyTypeSqlStr := ``
  149. if companyType == "ficc" {
  150. companyTypeSqlStr = " AND id != 40 AND parent_id != 40 "
  151. } else if companyType == "权益" {
  152. companyTypeSqlStr = " AND (id = 40 or parent_id = 40) "
  153. }
  154. if keyWord != "" {
  155. sqlCount = `SELECT COUNT(1) AS count FROM (
  156. SELECT * FROM classify
  157. WHERE parent_id=0 ` + companyTypeSqlStr + ` AND classify_name LIKE '%` + keyWord + `%'
  158. UNION
  159. SELECT * FROM classify
  160. WHERE id IN(SELECT parent_id FROM classify
  161. WHERE parent_id>0 ` + companyTypeSqlStr + ` AND classify_name LIKE '%` + keyWord + `%')
  162. )AS t `
  163. } else {
  164. sqlCount = `SELECT COUNT(1) AS count FROM classify WHERE parent_id=0 ` + companyTypeSqlStr
  165. if hideDayWeek == 1 {
  166. sqlCount += ` AND classify_name <> '晨报' AND classify_name <> '周报' `
  167. }
  168. }
  169. o := orm.NewOrmUsingDB("rddp")
  170. err = o.Raw(sqlCount).QueryRow(&count)
  171. return
  172. }
  173. type FindByIdClassifyReq struct {
  174. ClassifyId int `description:"分类ID"`
  175. }
  176. func GetClassifyChildByParentIds(parentId []int, keyWord string) (items []*Classify, err error) {
  177. parentIdLen := len(parentId)
  178. if parentIdLen == 0 {
  179. return
  180. }
  181. o := orm.NewOrmUsingDB("rddp")
  182. sql := ``
  183. if keyWord != "" {
  184. sql = `SELECT * FROM classify WHERE parent_id IN (` + utils.GetOrmInReplace(parentIdLen) + `) AND classify_name LIKE '%` + keyWord + `%' ORDER BY create_time ASC `
  185. } else {
  186. sql = `SELECT * FROM classify WHERE parent_id IN (` + utils.GetOrmInReplace(parentIdLen) + `) ORDER BY create_time ASC `
  187. }
  188. _, err = o.Raw(sql, parentId).QueryRows(&items)
  189. return
  190. }
  191. // GetAllClassify 获取所有分类
  192. func GetAllClassify() (list []*Classify, err error) {
  193. o := orm.NewOrmUsingDB("rddp")
  194. sql := ` SELECT * FROM classify `
  195. _, err = o.Raw(sql).QueryRows(&list)
  196. return
  197. }
  198. // SimpleClassifyList 简版分类列表
  199. type SimpleClassifyList struct {
  200. Id int `description:"分类ID"`
  201. ClassifyName string `description:"分类名称"`
  202. ParentId int `description:"父级ID"`
  203. Sort int `description:"排序"`
  204. CreateTime time.Time `description:"创建时间"`
  205. Level int `description:"层级"`
  206. Child []*SimpleClassifyList
  207. }
  208. // GetClassifyByCondition 获取分类列表
  209. func GetClassifyByCondition(condition, orderRule string, pars []interface{}) (items []*SimpleClassifyList, err error) {
  210. o := orm.NewOrmUsingDB("rddp")
  211. sql := `SELECT * FROM classify WHERE 1 = 1 `
  212. if condition != `` {
  213. sql += condition
  214. }
  215. order := `sort ASC, create_time ASC`
  216. if orderRule != `` {
  217. order = orderRule
  218. }
  219. sql += ` ORDER BY ` + order
  220. _, err = o.Raw(sql, pars).QueryRows(&items)
  221. return
  222. }
  223. // GetAllClassifyByRelateVideo
  224. // @Description: 获取关联视频的所有分类
  225. // @author: Roc
  226. // @datetime 2024-07-12 17:19:06
  227. // @return list []*Classify
  228. // @return err error
  229. func GetAllClassifyByRelateVideo() (list []*Classify, err error) {
  230. o := orm.NewOrmUsingDB("rddp")
  231. sql := ` SELECT * FROM classify where relate_video = 1`
  232. _, err = o.Raw(sql).QueryRows(&list)
  233. return
  234. }
  235. // GetClassifyListByParentIdList
  236. // @Description: 获取分类列表
  237. // @author: Roc
  238. // @datetime 2024-06-19 09:49:33
  239. // @param keyWord string
  240. // @param enabled int
  241. // @return items []*ClassifyList
  242. // @return err error
  243. func GetClassifyListByParentIdList(parentClassifyIdList []int) (items []*Classify, err error) {
  244. num := len(parentClassifyIdList)
  245. if num <= 0 {
  246. return
  247. }
  248. sql := `SELECT * FROM classify WHERE id in (` + utils.GetOrmInReplace(num) + `) ORDER BY sort ASC, create_time ASC`
  249. o := orm.NewOrmUsingDB("rddp")
  250. _, err = o.Raw(sql, parentClassifyIdList).QueryRows(&items)
  251. return
  252. }