report.go 56 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585
  1. package models
  2. import (
  3. "errors"
  4. "eta/eta_api/models/report"
  5. "eta/eta_api/utils"
  6. "fmt"
  7. "github.com/beego/beego/v2/client/orm"
  8. "github.com/rdlucklib/rdluck_tools/paging"
  9. "strings"
  10. "time"
  11. )
  12. // 报告状态
  13. const (
  14. ReportStateUnpublished = 1 // 未发布
  15. ReportStatePublished = 2 // 已发布
  16. ReportStateWaitSubmit = 3 // 待提交
  17. ReportStateWaitApprove = 4 // 审批中
  18. ReportStateRefused = 5 // 已驳回
  19. ReportStatePass = 6 // 已通过
  20. )
  21. // 报告操作
  22. const (
  23. ReportOperateAdd = 1 // 新增报告
  24. ReportOperateEdit = 2 // 编辑报告
  25. ReportOperatePublish = 3 // 发布报告
  26. ReportOperateCancelPublish = 4 // 取消发布报告
  27. ReportOperateSubmitApprove = 5 // 提交审批
  28. ReportOperateCancelApprove = 6 // 撤回审批
  29. )
  30. type Report struct {
  31. Id int `orm:"column(id)" description:"报告Id"`
  32. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  33. ClassifyIdFirst int `description:"一级分类id"`
  34. ClassifyNameFirst string `description:"一级分类名称"`
  35. ClassifyIdSecond int `description:"二级分类id"`
  36. ClassifyNameSecond string `description:"二级分类名称"`
  37. Title string `description:"标题"`
  38. Abstract string `description:"摘要"`
  39. Author string `description:"作者"`
  40. Frequency string `description:"频度"`
  41. CreateTime string `description:"创建时间"`
  42. ModifyTime time.Time `description:"修改时间"`
  43. State int `description:"1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过"`
  44. PublishTime time.Time `description:"发布时间"`
  45. Stage int `description:"期数"`
  46. MsgIsSend int `description:"消息是否已发送,0:否,1:是"`
  47. ThsMsgIsSend int `description:"客户群消息是否已发送,0:否,1:是"`
  48. Content string `description:"内容"`
  49. VideoUrl string `description:"音频文件URL"`
  50. VideoName string `description:"音频文件名称"`
  51. VideoPlaySeconds string `description:"音频播放时长"`
  52. VideoSize string `description:"音频文件大小,单位M"`
  53. ContentSub string `description:"内容前两个章节"`
  54. ReportCode string `description:"报告唯一编码"`
  55. ReportVersion int `description:"1:旧版,2:新版"`
  56. HasChapter int `description:"是否有章节 0-否 1-是"`
  57. ChapterType string `description:"章节类型 day-晨报 week-周报"`
  58. OldReportId int `description:"research_report表ID, 大于0则表示该报告为老后台同步过来的"`
  59. MsgSendTime time.Time `description:"模版消息发送时间"`
  60. AdminId int `description:"创建者账号"`
  61. AdminRealName string `description:"创建者姓名"`
  62. ApproveTime time.Time `description:"审批时间"`
  63. ApproveId int `description:"审批ID"`
  64. DetailImgUrl string `description:"报告详情长图地址"`
  65. DetailPdfUrl string `description:"报告详情PDF地址"`
  66. ContentStruct string `description:"内容组件"`
  67. LastModifyAdminId int `description:"最后更新人ID"`
  68. LastModifyAdminName string `description:"最后更新人姓名"`
  69. ContentModifyTime time.Time `description:"内容更新时间"`
  70. Pv int `description:"pv"`
  71. Uv int `description:"uv"`
  72. HeadImg string `description:"报告头图地址"`
  73. EndImg string `description:"报告尾图地址"`
  74. CanvasColor string `description:"画布颜色"`
  75. NeedSplice int `description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
  76. HeadResourceId int `description:"版头资源ID"`
  77. EndResourceId int `description:"版尾资源ID"`
  78. ClassifyIdThird int `description:"三级分类id"`
  79. ClassifyNameThird string `description:"三级分类名称"`
  80. CollaborateType int8 `description:"协作方式,1:个人,2:多人协作。默认:1"`
  81. ReportLayout int8 `description:"报告布局,1:常规布局,2:智能布局。默认:1"`
  82. IsPublicPublish int8 `description:"是否公开发布,1:是,2:否"`
  83. ReportCreateTime time.Time `description:"报告时间创建时间"`
  84. }
  85. type ReportList struct {
  86. Id int `description:"报告Id"`
  87. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  88. ClassifyIdFirst int `description:"一级分类id"`
  89. ClassifyNameFirst string `description:"一级分类名称"`
  90. ClassifyIdSecond int `description:"二级分类id"`
  91. ClassifyNameSecond string `description:"二级分类名称"`
  92. Title string `description:"标题"`
  93. Abstract string `description:"摘要"`
  94. Author string `description:"作者"`
  95. Frequency string `description:"频度"`
  96. CreateTime string `description:"创建时间"`
  97. ModifyTime time.Time `description:"修改时间"`
  98. State int `description:"1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过"`
  99. PublishTime string `description:"发布时间"`
  100. PrePublishTime string `description:"预发布时间"`
  101. Stage int `description:"期数"`
  102. MsgIsSend int `description:"模板消息是否已发送,0:否,1:是"`
  103. Content string `description:"内容"`
  104. VideoUrl string `description:"音频文件URL"`
  105. VideoName string `description:"音频文件名称"`
  106. VideoPlaySeconds string `description:"音频播放时长"`
  107. ContentSub string `description:"内容前两个章节"`
  108. Pv int `description:"Pv"`
  109. Uv int `description:"Uv"`
  110. ReportCode string `description:"报告唯一编码"`
  111. ReportVersion int `description:"1:旧版,2:新版"`
  112. ThsMsgIsSend int `description:"客户群消息是否已发送,0:否,1:是"`
  113. NeedThsMsg int `description:"是否需要推送客群消息 0-否 1-是"`
  114. HasChapter int `description:"是否有章节 0-否 1-是"`
  115. ChapterType string `description:"章节类型 day-晨报 week-周报"`
  116. ChapterVideoList []*ReportChapterVideoList `description:"章节音频列表"`
  117. OldReportId int `description:"research_report表ID, 大于0则表示该报告为老后台同步过来的"`
  118. MsgSendTime string `description:"模版消息发送时间"`
  119. CanEdit bool `description:"是否可编辑"`
  120. Editor string `description:"编辑人"`
  121. AdminId int `description:"创建者账号"`
  122. AdminRealName string `description:"创建者姓名"`
  123. ApproveTime string `description:"审批时间"`
  124. DetailImgUrl string `description:"报告详情长图地址"`
  125. DetailPdfUrl string `description:"报告详情PDF地址"`
  126. ReportLayout int8 `description:"报告布局,1:常规布局,2:智能布局。默认:1"`
  127. ReportCreateTime time.Time `description:"报告时间创建时间"`
  128. ContentStruct string `description:"内容组件"`
  129. LastModifyAdminId int `description:"最后更新人ID"`
  130. LastModifyAdminName string `description:"最后更新人姓名"`
  131. ContentModifyTime time.Time `description:"内容更新时间"`
  132. HeadImg string `description:"报告头图地址"`
  133. EndImg string `description:"报告尾图地址"`
  134. CanvasColor string `description:"画布颜色"`
  135. NeedSplice int `description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
  136. HeadResourceId int `description:"版头资源ID"`
  137. EndResourceId int `description:"版尾资源ID"`
  138. ClassifyIdThird int `description:"三级分类id"`
  139. ClassifyNameThird string `description:"三级分类名称"`
  140. CollaborateType int8 `description:"协作方式,1:个人,2:多人协作。默认:1"`
  141. }
  142. type ReportListResp struct {
  143. List []*ReportList
  144. Paging *paging.PagingItem `description:"分页数据"`
  145. }
  146. // GetReportListCountV1
  147. // @Description: 获取普通报告列表的报告数量
  148. // @author: Roc
  149. // @datetime 2024-05-30 15:14:43
  150. // @param condition string
  151. // @param pars []interface{}
  152. // @return count int
  153. // @return err error
  154. func GetReportListCountV1(condition string, pars []interface{}) (count int, err error) {
  155. o := orm.NewOrmUsingDB("rddp")
  156. sql := `SELECT COUNT(1) AS count FROM report as a WHERE 1=1 `
  157. if condition != "" {
  158. sql += condition
  159. }
  160. err = o.Raw(sql, pars).QueryRow(&count)
  161. return
  162. }
  163. // GetReportListV1
  164. // @Description: 获取普通报告列表的数据
  165. // @author: Roc
  166. // @datetime 2024-05-30 15:14:25
  167. // @param condition string
  168. // @param pars []interface{}
  169. // @param startSize int
  170. // @param pageSize int
  171. // @return items []*ReportList
  172. // @return err error
  173. func GetReportListV1(condition string, pars []interface{}, startSize, pageSize int) (items []*ReportList, err error) {
  174. o := orm.NewOrmUsingDB("rddp")
  175. sql := `SELECT * FROM report as a WHERE 1=1 `
  176. if condition != "" {
  177. sql += condition
  178. }
  179. // 排序:1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过
  180. sql += `ORDER BY FIELD(state,3,1,4,5,6,2), modify_time DESC LIMIT ?,?`
  181. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  182. return
  183. }
  184. type ReportPvUv struct {
  185. ReportId int
  186. PvTotal int
  187. UvTotal int
  188. }
  189. func GetReportPvUvByReportIdList(reportIdList []string) (items []ReportPvUv, err error) {
  190. num := len(reportIdList)
  191. if num <= 0 {
  192. return
  193. }
  194. o := orm.NewOrmUsingDB("rddp")
  195. sql := `SELECT report_id, COUNT(1) as pv_total,COUNT(DISTINCT user_id) as uv_total FROM report_view_record WHERE report_id in (` + utils.GetOrmInReplace(num) + `) GROUP BY report_id`
  196. _, err = o.Raw(sql, reportIdList).QueryRows(&items)
  197. return
  198. }
  199. // GetReportListCountByGrant
  200. // @Description: 获取共享报告列表的报告数量
  201. // @author: Roc
  202. // @datetime 2024-05-30 15:14:01
  203. // @param condition string
  204. // @param pars []interface{}
  205. // @return count int
  206. // @return err error
  207. func GetReportListCountByGrant(condition string, pars []interface{}) (count int, err error) {
  208. o := orm.NewOrmUsingDB("rddp")
  209. sql := `SELECT a.id FROM report as a
  210. JOIN report_grant b on a.id=b.report_id
  211. WHERE 1=1 `
  212. if condition != "" {
  213. sql += condition
  214. }
  215. sql += " GROUP BY a.id "
  216. sql = `SELECT COUNT(1) AS count FROM (` + sql + `) d`
  217. err = o.Raw(sql, pars).QueryRow(&count)
  218. return
  219. }
  220. // GetReportListByGrant
  221. // @Description: 获取共享报告列表的数据
  222. // @author: Roc
  223. // @datetime 2024-05-30 15:15:07
  224. // @param condition string
  225. // @param pars []interface{}
  226. // @param startSize int
  227. // @param pageSize int
  228. // @return items []*ReportList
  229. // @return err error
  230. func GetReportListByGrant(condition string, pars []interface{}, startSize, pageSize int) (items []*ReportList, err error) {
  231. o := orm.NewOrmUsingDB("rddp")
  232. sql := `SELECT * FROM report as a JOIN report_grant b on a.id = b.report_id WHERE 1=1 `
  233. if condition != "" {
  234. sql += condition
  235. }
  236. // 排序:1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过
  237. sql += ` GROUP BY a.id ORDER BY FIELD(state,3,1,4,5,6,2), modify_time DESC LIMIT ?,?`
  238. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  239. return
  240. }
  241. func GetReportListCount(condition string, pars []interface{}) (count int, err error) {
  242. oRddp := orm.NewOrmUsingDB("rddp")
  243. sql := `SELECT COUNT(1) AS count FROM report WHERE 1=1 `
  244. if condition != "" {
  245. sql += condition
  246. }
  247. err = oRddp.Raw(sql, pars).QueryRow(&count)
  248. return
  249. }
  250. func GetReportList(condition string, pars []interface{}, startSize, pageSize int) (items []*ReportList, err error) {
  251. o := orm.NewOrmUsingDB("rddp")
  252. sql := `SELECT *,
  253. (SELECT COUNT(1) FROM report_view_record AS rvr WHERE rvr.report_id=report.id) AS pv,
  254. (SELECT COUNT(DISTINCT user_id) FROM report_view_record AS rvr WHERE rvr.report_id=report.id) AS uv
  255. FROM report WHERE 1=1 `
  256. if condition != "" {
  257. sql += condition
  258. }
  259. // 排序:1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过
  260. sql += `ORDER BY FIELD(state,3,1,4,5,6,2), modify_time DESC LIMIT ?,?`
  261. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  262. return
  263. }
  264. // PublishReport 发布报告
  265. func PublishReport(reportIds []int) (err error) {
  266. if len(reportIds) == 0 {
  267. return
  268. }
  269. o := orm.NewOrmUsingDB("rddp")
  270. sql := `UPDATE report SET state=2,publish_time=now(),modify_time=NOW() WHERE id IN (` + utils.GetOrmInReplace(len(reportIds)) + `)`
  271. _, err = o.Raw(sql).Exec()
  272. return
  273. }
  274. // PublishCancelReport 取消发布报告
  275. func PublishCancelReport(reportId, state int, publishTimeNullFlag bool) (err error) {
  276. o := orm.NewOrmUsingDB("rddp")
  277. var sql string
  278. if publishTimeNullFlag {
  279. sql = ` UPDATE report SET state=?, publish_time=null, pre_publish_time=null, pre_msg_send=0 WHERE id =?`
  280. } else {
  281. sql = ` UPDATE report SET state=?, pre_publish_time=null, pre_msg_send=0 WHERE id =?`
  282. }
  283. _, err = o.Raw(sql, state, reportId).Exec()
  284. return
  285. }
  286. // 删除报告
  287. func DeleteReport(reportIds int) (err error) {
  288. o := orm.NewOrmUsingDB("rddp")
  289. sql := ` DELETE FROM report WHERE id =? `
  290. _, err = o.Raw(sql, reportIds).Exec()
  291. return
  292. }
  293. type ReportDetail struct {
  294. Id int `orm:"column(id)" description:"报告Id"`
  295. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  296. ClassifyIdFirst int `description:"一级分类id"`
  297. ClassifyNameFirst string `description:"一级分类名称"`
  298. ClassifyIdSecond int `description:"二级分类id"`
  299. ClassifyNameSecond string `description:"二级分类名称"`
  300. Title string `description:"标题"`
  301. Abstract string `description:"摘要"`
  302. Author string `description:"作者"`
  303. Frequency string `description:"频度"`
  304. CreateTime string `description:"创建时间"`
  305. ModifyTime string `description:"修改时间"`
  306. State int `description:"1:未发布,2:已发布"`
  307. PublishTime string `description:"发布时间"`
  308. PrePublishTime string `description:"预发布时间"`
  309. Stage int `description:"期数"`
  310. MsgIsSend int `description:"消息是否已发送,0:否,1:是"`
  311. PreMsgSend int `description:"定时发布成功后是否立即推送模版消息:0否,1是"`
  312. Content string `description:"内容"`
  313. VideoUrl string `description:"音频文件URL"`
  314. VideoName string `description:"音频文件名称"`
  315. VideoPlaySeconds string `description:"音频播放时长"`
  316. ContentSub string `description:"内容前两个章节"`
  317. ThsMsgIsSend int `description:"客户群消息是否已发送,0:否,1:是"`
  318. HasChapter int `description:"是否有章节 0-否 1-是"`
  319. ChapterType string `description:"章节类型 day-晨报 week-周报"`
  320. // eta1.8.3(研报改版)相关内容
  321. ContentStruct string `description:"内容组件"`
  322. LastModifyAdminId int `description:"最后更新人ID"`
  323. LastModifyAdminName string `description:"最后更新人姓名"`
  324. ContentModifyTime time.Time `description:"内容更新时间"`
  325. Pv int `description:"pv"`
  326. Uv int `description:"uv"`
  327. HeadImg string `description:"报告头图地址"`
  328. EndImg string `description:"报告尾图地址"`
  329. CanvasColor string `description:"画布颜色"`
  330. NeedSplice int `description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
  331. HeadResourceId int `description:"版头资源ID"`
  332. EndResourceId int `description:"版尾资源ID"`
  333. ClassifyIdThird int `description:"三级分类id"`
  334. ClassifyNameThird string `description:"三级分类名称"`
  335. CollaborateType int8 `description:"协作方式,1:个人,2:多人协作。默认:1"`
  336. ReportLayout int8 `description:"报告布局,1:常规布局,2:智能布局。默认:1"`
  337. IsPublicPublish int8 `description:"是否公开发布,1:是,2:否"`
  338. ReportCreateTime time.Time `description:"报告时间创建时间"`
  339. }
  340. func GetReportById(reportId int) (item *ReportDetail, err error) {
  341. o := orm.NewOrmUsingDB("rddp")
  342. sql := `SELECT * FROM report WHERE id=?`
  343. err = o.Raw(sql, reportId).QueryRow(&item)
  344. return
  345. }
  346. func GetReportByIds(reportIds string) (list []*ReportDetail, err error) {
  347. o := orm.NewOrmUsingDB("rddp")
  348. sql := `SELECT * FROM report WHERE id in ` + reportIds
  349. _, err = o.Raw(sql).QueryRows(&list)
  350. return
  351. }
  352. // GetSimpleReportByIds 根据报告ID查询报告基本信息
  353. func GetSimpleReportByIds(reportIds []int) (list []*Report, err error) {
  354. if len(reportIds) == 0 {
  355. return
  356. }
  357. o := orm.NewOrmUsingDB("rddp")
  358. sql := `SELECT id, title, report_code FROM report WHERE id IN (` + utils.GetOrmInReplace(len(reportIds)) + `)`
  359. _, err = o.Raw(sql, reportIds).QueryRows(&list)
  360. return
  361. }
  362. // GetReportStage
  363. // @Description: 获取报告的最大期数(每一年的最大期数)
  364. // @author: Roc
  365. // @datetime 2024-06-03 17:44:14
  366. // @param classifyIdFirst int
  367. // @param classifyIdSecond int
  368. // @param classifyIdThird int
  369. // @return count int
  370. // @return err error
  371. func GetReportStage(classifyIdFirst, classifyIdSecond, classifyIdThird int) (count int, err error) {
  372. o := orm.NewOrmUsingDB("rddp")
  373. classifyId := classifyIdThird
  374. if classifyId <= 0 {
  375. classifyId = classifyIdSecond
  376. }
  377. if classifyId <= 0 {
  378. classifyId = classifyIdFirst
  379. }
  380. if classifyId <= 0 {
  381. err = errors.New("错误的分类id")
  382. return
  383. }
  384. yearStart := time.Date(time.Now().Local().Year(), 1, 1, 0, 0, 0, 0, time.Local)
  385. sql := `SELECT MAX(stage) AS max_stage FROM report WHERE create_time > ? `
  386. if classifyIdThird > 0 {
  387. sql += " AND classify_id_third = ? "
  388. } else if classifyIdSecond > 0 {
  389. sql += " AND classify_id_second = ? "
  390. } else {
  391. sql = " AND classify_id_first = ? "
  392. }
  393. o.Raw(sql, yearStart, classifyId).QueryRow(&count)
  394. return
  395. }
  396. // GetReportStageEdit
  397. // @Description: 获取报告的最大期数(每一年的最大期数)
  398. // @author: Roc
  399. // @datetime 2024-06-04 13:50:34
  400. // @param classifyIdFirst int
  401. // @param classifyIdSecond int
  402. // @param classifyIdThird int
  403. // @param reportId int
  404. // @return count int
  405. // @return err error
  406. func GetReportStageEdit(classifyIdFirst, classifyIdSecond, classifyIdThird, reportId int) (count int, err error) {
  407. classifyId := classifyIdThird
  408. if classifyId <= 0 {
  409. classifyId = classifyIdSecond
  410. }
  411. if classifyId <= 0 {
  412. classifyId = classifyIdFirst
  413. }
  414. if classifyId <= 0 {
  415. err = errors.New("错误的分类id")
  416. return
  417. }
  418. yearStart := time.Date(time.Now().Local().Year(), 1, 1, 0, 0, 0, 0, time.Local)
  419. sql := `SELECT MAX(stage) AS max_stage FROM report WHERE create_time > ? AND id<>? `
  420. if classifyIdThird > 0 {
  421. sql += " AND classify_id_third = ? "
  422. } else if classifyIdSecond > 0 {
  423. sql += " AND classify_id_second = ? "
  424. } else {
  425. sql = " AND classify_id_first = ? "
  426. }
  427. o := orm.NewOrmUsingDB("rddp")
  428. o.Raw(sql, yearStart, reportId, classifyId).QueryRow(&count)
  429. return
  430. }
  431. type PublishReq struct {
  432. ReportIds string `description:"报告id,多个用英文逗号隔开"`
  433. ReportUrl string `description:"报告Url"`
  434. }
  435. type PublishCancelReq struct {
  436. ReportIds int `description:"报告id"`
  437. }
  438. type DeleteReq struct {
  439. ReportIds int `description:"报告id"`
  440. }
  441. type AddReq struct {
  442. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  443. ClassifyIdFirst int `description:"一级分类id"`
  444. ClassifyNameFirst string `description:"一级分类名称"`
  445. ClassifyIdSecond int `description:"二级分类id"`
  446. ClassifyNameSecond string `description:"二级分类名称"`
  447. ClassifyIdThird int `description:"三级分类id"`
  448. ClassifyNameThird string `description:"三级分类名称"`
  449. Title string `description:"标题"`
  450. Abstract string `description:"摘要"`
  451. Author string `description:"作者"`
  452. Frequency string `description:"频度"`
  453. State int `description:"状态:1:未发布,2:已发布"`
  454. Content string `description:"内容"`
  455. CreateTime string `description:"创建时间"`
  456. ReportVersion int `description:"1:旧版,2:新版"`
  457. ContentStruct string `description:"内容组件"`
  458. HeadImg string `description:"报告头图地址"`
  459. EndImg string `description:"报告尾图地址"`
  460. CanvasColor string `description:"画布颜色"`
  461. NeedSplice int `description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
  462. HeadResourceId int `description:"版头资源ID"`
  463. EndResourceId int `description:"版尾资源ID"`
  464. CollaborateType int8 `description:"协作方式,1:个人,2:多人协作。默认:1"`
  465. ReportLayout int8 `description:"报告布局,1:常规布局,2:智能布局。默认:1"`
  466. IsPublicPublish int8 `description:"是否公开发布,1:是,2:否"`
  467. InheritReportId int `description:"待继承的报告ID"`
  468. }
  469. type PrePublishReq struct {
  470. ReportId int `description:"报告id"`
  471. PrePublishTime string `description:"预发布时间"`
  472. PreMsgSend int `description:"定时发布成功后是否立即推送模版消息:0否,1是"`
  473. ReportUrl string `description:"报告Url"`
  474. }
  475. type AddResp struct {
  476. ReportId int64 `description:"报告id"`
  477. ReportCode string `description:"报告code"`
  478. }
  479. func AddReport(item *Report) (lastId int64, err error) {
  480. o := orm.NewOrmUsingDB("rddp")
  481. lastId, err = o.Insert(item)
  482. return
  483. }
  484. type EditReq struct {
  485. ReportId int64 `description:"报告id"`
  486. ClassifyIdFirst int `description:"一级分类id"`
  487. ClassifyNameFirst string `description:"一级分类名称"`
  488. ClassifyIdSecond int `description:"二级分类id"`
  489. ClassifyNameSecond string `description:"二级分类名称"`
  490. ClassifyIdThird int `description:"三级分类id"`
  491. ClassifyNameThird string `description:"三级分类名称"`
  492. Title string `description:"标题"`
  493. Abstract string `description:"摘要"`
  494. Author string `description:"作者"`
  495. Frequency string `description:"频度"`
  496. State int `description:"状态:1:未发布,2:已发布"`
  497. Content string `description:"内容"`
  498. CreateTime string `description:"创建时间"`
  499. ContentStruct string `description:"内容组件"`
  500. HeadImg string `description:"报告头图地址"`
  501. EndImg string `description:"报告尾图地址"`
  502. CanvasColor string `description:"画布颜色"`
  503. NeedSplice int `description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
  504. HeadResourceId int `description:"版头资源ID"`
  505. EndResourceId int `description:"版尾资源ID"`
  506. //CollaborateType int8 `description:"协作方式,1:个人,2:多人协作。默认:1"`
  507. //ReportLayout int8 `description:"报告布局,1:常规布局,2:智能布局。默认:1"`
  508. IsPublicPublish int8 `description:"是否公开发布,1:是,2:否"`
  509. }
  510. type EditResp struct {
  511. ReportId int64 `description:"报告id"`
  512. ReportCode string `description:"报告code"`
  513. }
  514. func EditReport(item *Report, reportId int64) (err error) {
  515. o := orm.NewOrmUsingDB("rddp")
  516. sql := `UPDATE report
  517. SET
  518. classify_id_first =?,
  519. classify_name_first = ?,
  520. classify_id_second = ?,
  521. classify_name_second = ?,
  522. title = ?,
  523. abstract = ?,
  524. author = ?,
  525. frequency = ?,
  526. state = ?,
  527. content = ?,
  528. content_sub = ?,
  529. stage =?,
  530. create_time = ?,
  531. modify_time = ?
  532. WHERE id = ? `
  533. _, err = o.Raw(sql, item.ClassifyIdFirst, item.ClassifyNameFirst, item.ClassifyIdSecond, item.ClassifyNameSecond, item.Title,
  534. item.Abstract, item.Author, item.Frequency, item.State, item.Content, item.ContentSub, item.Stage, item.CreateTime, time.Now(), reportId).Exec()
  535. return
  536. }
  537. func (m *Report) Update(cols []string) (err error) {
  538. o := orm.NewOrmUsingDB("rddp")
  539. _, err = o.Update(m, cols...)
  540. return
  541. }
  542. type ReportDetailReq struct {
  543. ReportId int `description:"报告id"`
  544. }
  545. type ClassifyIdDetailReq struct {
  546. ClassifyIdFirst int `description:"报告一级分类id"`
  547. ClassifyIdSecond int `description:"报告二级分类id"`
  548. }
  549. func GetReportDetailByClassifyId(classifyIdFirst, classifyIdSecond int) (item *Report, err error) {
  550. o := orm.NewOrmUsingDB("rddp")
  551. sql := ` SELECT * FROM report WHERE 1=1 `
  552. if classifyIdSecond > 0 {
  553. sql = sql + ` AND classify_id_second=? ORDER BY stage DESC LIMIT 1`
  554. err = o.Raw(sql, classifyIdSecond).QueryRow(&item)
  555. } else {
  556. sql = sql + ` AND classify_id_first=? ORDER BY stage DESC LIMIT 1`
  557. err = o.Raw(sql, classifyIdFirst).QueryRow(&item)
  558. }
  559. return
  560. }
  561. type SendTemplateMsgReq struct {
  562. ReportId int `description:"报告id"`
  563. }
  564. func ModifyReportMsgIsSend(reportId int) (err error) {
  565. o := orm.NewOrmUsingDB("rddp")
  566. report, err := GetReportById(reportId)
  567. if err != nil {
  568. return
  569. }
  570. if report.MsgIsSend == 0 {
  571. sql := `UPDATE report SET msg_is_send = 1, msg_send_time=NOW() WHERE id = ? `
  572. _, err = o.Raw(sql, reportId).Exec()
  573. }
  574. return
  575. }
  576. func ModifyReportVideo(reportId int, videoUrl, videoName, videoSize string, playSeconds float64) (err error) {
  577. o := orm.NewOrmUsingDB("rddp")
  578. sql := `UPDATE report SET video_url=?,video_name=?,video_play_seconds=?,video_size=? WHERE id=? `
  579. _, err = o.Raw(sql, videoUrl, videoName, playSeconds, videoSize, reportId).Exec()
  580. return
  581. }
  582. type ReportItem struct {
  583. Id int `orm:"column(id)" description:"报告Id"`
  584. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  585. ClassifyIdFirst int `description:"一级分类id"`
  586. ClassifyNameFirst string `description:"一级分类名称"`
  587. ClassifyIdSecond int `description:"二级分类id"`
  588. ClassifyNameSecond string `description:"二级分类名称"`
  589. Title string `description:"标题"`
  590. Abstract string `description:"摘要"`
  591. Author string `description:"作者"`
  592. Frequency string `description:"频度"`
  593. CreateTime time.Time `description:"创建时间"`
  594. ModifyTime time.Time `description:"修改时间"`
  595. State int `description:"1:未发布,2:已发布"`
  596. PublishTime time.Time `description:"发布时间"`
  597. Stage int `description:"期数"`
  598. MsgIsSend int `description:"消息是否已发送,0:否,1:是"`
  599. Content string `description:"内容"`
  600. VideoUrl string `description:"音频文件URL"`
  601. VideoName string `description:"音频文件名称"`
  602. VideoPlaySeconds string `description:"音频播放时长"`
  603. ContentSub string `description:"内容前两个章节"`
  604. }
  605. func GetReportItemById(reportId int) (item *ReportItem, err error) {
  606. o := orm.NewOrmUsingDB("rddp")
  607. sql := `SELECT * FROM report WHERE id=?`
  608. err = o.Raw(sql, reportId).QueryRow(&item)
  609. return
  610. }
  611. type SaveReportContent struct {
  612. Content string `description:"内容"`
  613. ReportId int `description:"报告id"`
  614. NoChange int `description:"内容是否未改变:1:内容未改变"`
  615. // 以下是智能研报相关
  616. ContentStruct string `description:"内容组件"`
  617. HeadImg string `description:"报告头图地址"`
  618. EndImg string `description:"报告尾图地址"`
  619. CanvasColor string `description:"画布颜色"`
  620. NeedSplice int `description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
  621. HeadResourceId int `description:"版头资源ID"`
  622. EndResourceId int `description:"版尾资源ID"`
  623. }
  624. func EditReportContent(reportId int, content, contentSub string) (err error) {
  625. o := orm.NewOrmUsingDB("rddp")
  626. sql := ` UPDATE report SET content=?,content_sub=?,modify_time=NOW() WHERE id=? `
  627. _, err = o.Raw(sql, content, contentSub, reportId).Exec()
  628. return
  629. }
  630. func AddReportSaveLog(reportId, adminId int, content, contentSub, contentStruct, canvasColor, adminName string, headResourceId, endResourceId int) (err error) {
  631. o := orm.NewOrmUsingDB("rddp")
  632. sql := ` INSERT INTO report_save_log(report_id, content,content_sub,content_struct,canvas_color,head_resource_id,end_resource_id,admin_id,admin_name) VALUES (?,?,?,?,?) `
  633. _, err = o.Raw(sql, reportId, content, contentSub, contentStruct, canvasColor, headResourceId, endResourceId, adminId, adminName).Exec()
  634. return
  635. }
  636. func MultiAddReportChaptersSaveLog(items []*ReportChapter, adminId int, adminRealName string) (err error) {
  637. o := orm.NewOrmUsingDB("rddp")
  638. p, err := o.Raw(`INSERT INTO report_save_log(report_id, report_chapter_id, content, content_sub,content_struct,canvas_color,head_resource_id,end_resource_id, admin_id, admin_name) VALUES (?,?,?,?,?,?,?,?,?,?)`).Prepare()
  639. if err != nil {
  640. return
  641. }
  642. defer func() {
  643. _ = p.Close()
  644. }()
  645. for _, v := range items {
  646. _, err = p.Exec(v.ReportId, v.ReportChapterId, v.Content, v.ContentSub, v.ContentStruct, v.CanvasColor, v.HeadResourceId, v.EndResourceId, adminId, adminRealName)
  647. if err != nil {
  648. return
  649. }
  650. }
  651. return
  652. }
  653. type SaveReportContentResp struct {
  654. ReportId int `description:"报告id"`
  655. }
  656. func ModifyReportCode(reportId int64, reportCode string) (err error) {
  657. o := orm.NewOrmUsingDB("rddp")
  658. sql := `UPDATE report SET report_code=? WHERE id=? `
  659. _, err = o.Raw(sql, reportCode, reportId).Exec()
  660. return
  661. }
  662. func ModifyReportThsMsgIsSend(item *ReportDetail) (err error) {
  663. o := orm.NewOrmUsingDB("rddp")
  664. if item.ThsMsgIsSend == 0 {
  665. sql := `UPDATE report SET ths_msg_is_send = 1 WHERE id = ? `
  666. _, err = o.Raw(sql, item.Id).Exec()
  667. }
  668. return
  669. }
  670. type ThsSendTemplateMsgReq struct {
  671. ReportId []int `description:"报告id"`
  672. }
  673. type PublishDayWeekReportReq struct {
  674. ReportId int `description:"报告ID"`
  675. }
  676. // SaveDayWeekReportReq 新增晨报周报请求体
  677. type SaveDayWeekReportReq struct {
  678. ReportId int `description:"报告ID"`
  679. Title string `description:"标题"`
  680. ReportType string `description:"一级分类ID"`
  681. Author string `description:"作者"`
  682. CreateTime string `description:"创建时间"`
  683. }
  684. // GetDayWeekReportStage 获取晨报周报期数
  685. func GetDayWeekReportStage(classifyIdFirst int, yearStart time.Time) (count int, err error) {
  686. o := orm.NewOrmUsingDB("rddp")
  687. sql := " SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_first = ? AND create_time > ? "
  688. o.Raw(sql, classifyIdFirst, yearStart).QueryRow(&count)
  689. return
  690. }
  691. // AddReportAndChapter 新增报告及章节
  692. func AddReportAndChapter(reportItem *Report, allGrantUserList []*report.ReportGrant, addReportChapterList []AddReportChapter) (reportId int64, err error) {
  693. o := orm.NewOrmUsingDB("rddp")
  694. to, err := o.Begin()
  695. if err != nil {
  696. return
  697. }
  698. defer func() {
  699. if err != nil {
  700. _ = to.Rollback()
  701. } else {
  702. _ = to.Commit()
  703. }
  704. }()
  705. // 新增报告
  706. reportId, err = to.Insert(reportItem)
  707. if err != nil {
  708. return
  709. }
  710. reportItem.Id = int(reportId)
  711. // 新增报告授权
  712. if len(allGrantUserList) > 0 {
  713. for _, v := range allGrantUserList {
  714. v.ReportId = reportItem.Id
  715. }
  716. _, err = to.InsertMulti(500, allGrantUserList)
  717. if err != nil {
  718. return
  719. }
  720. }
  721. // 新增报告章节
  722. if len(addReportChapterList) > 0 {
  723. for _, addReportChapter := range addReportChapterList {
  724. // 新增章节
  725. chapterItem := addReportChapter.ReportChapter
  726. chapterItem.ReportId = int(reportId)
  727. cpId, tmpErr := to.Insert(chapterItem)
  728. if tmpErr != nil {
  729. err = tmpErr
  730. return
  731. }
  732. chapterItem.ReportChapterId = int(cpId)
  733. // 新增章节授权
  734. if len(addReportChapter.GrantList) > 0 {
  735. grantList := addReportChapter.GrantList
  736. for _, v := range grantList {
  737. v.ReportChapterId = chapterItem.ReportChapterId
  738. }
  739. _, err = to.InsertMulti(500, grantList)
  740. if err != nil {
  741. return
  742. }
  743. }
  744. }
  745. }
  746. return
  747. }
  748. // GetReportByReportId 主键获取报告
  749. func GetReportByReportId(reportId int) (item *Report, err error) {
  750. o := orm.NewOrmUsingDB("rddp")
  751. sql := `SELECT * FROM report WHERE id = ?`
  752. err = o.Raw(sql, reportId).QueryRow(&item)
  753. return
  754. }
  755. // GetReportByOldReportId 根据老报告id主键获取报告
  756. func GetReportByOldReportId(reportId int) (item *Report, err error) {
  757. o := orm.NewOrmUsingDB("rddp")
  758. sql := `SELECT * FROM report WHERE old_report_id = ?`
  759. err = o.Raw(sql, reportId).QueryRow(&item)
  760. return
  761. }
  762. // DeleteDayWeekReportAndChapter 删除晨周报及章节
  763. func DeleteDayWeekReportAndChapter(reportId int) (err error) {
  764. o := orm.NewOrmUsingDB("rddp")
  765. to, err := o.Begin()
  766. if err != nil {
  767. return
  768. }
  769. defer func() {
  770. if err != nil {
  771. _ = to.Rollback()
  772. } else {
  773. _ = to.Commit()
  774. }
  775. }()
  776. sql := ` DELETE FROM report WHERE id = ? LIMIT 1 `
  777. if _, err = to.Raw(sql, reportId).Exec(); err != nil {
  778. return
  779. }
  780. sql = ` DELETE FROM report_chapter WHERE report_id = ? `
  781. if _, err = to.Raw(sql, reportId).Exec(); err != nil {
  782. return
  783. }
  784. return
  785. }
  786. // UpdateReport 更新报告
  787. func (reportInfo *Report) UpdateReport(cols []string) (err error) {
  788. o := orm.NewOrmUsingDB("rddp")
  789. _, err = o.Update(reportInfo, cols...)
  790. return
  791. }
  792. // ReportDetailView
  793. // @Description: 晨周报详情
  794. type ReportDetailView struct {
  795. *ReportDetail
  796. ChapterList []*ReportChapter
  797. }
  798. func GetUnPublishDayReport(startTime time.Time, endTime time.Time) (item *Report, err error) {
  799. o := orm.NewOrmUsingDB("rddp")
  800. sql := ` SELECT
  801. *
  802. FROM
  803. report AS a
  804. WHERE
  805. a.has_chapter = 1
  806. AND a.chapter_type = "day"
  807. AND a.state = 1
  808. AND (
  809. a.create_time BETWEEN ? AND ?
  810. )
  811. ORDER BY
  812. a.create_time DESC
  813. LIMIT 1 `
  814. err = o.Raw(sql, startTime, endTime).QueryRow(&item)
  815. return
  816. }
  817. type ElasticReportDetail struct {
  818. ReportId int `description:"报告ID"`
  819. ReportChapterId int `description:"报告章节ID"`
  820. Title string `description:"标题"`
  821. Abstract string `description:"摘要"`
  822. BodyContent string `description:"内容"`
  823. PublishTime string `description:"发布时间"`
  824. PublishState int `description:"发布状态 1-未发布 2-已发布"`
  825. Author string `description:"作者"`
  826. ClassifyIdFirst int `description:"一级分类ID"`
  827. ClassifyNameFirst string `description:"一级分类名称"`
  828. ClassifyIdSecond int `description:"二级分类ID"`
  829. ClassifyNameSecond string `description:"二级分类名称"`
  830. Categories string `description:"关联的品种名称(包括品种别名)"`
  831. StageStr string `description:"报告期数"`
  832. BodyMd5 string `description:"MD5加密之后的内容"`
  833. }
  834. // GetLastPublishedDayWeekReport 获取上一篇已发布的晨周报
  835. func GetLastPublishDayWeekReport(chapterType string) (item *Report, err error) {
  836. o := orm.NewOrmUsingDB("rddp")
  837. sql := ` SELECT * FROM report WHERE has_chapter = 1 AND chapter_type = ? AND state = 2 ORDER BY publish_time DESC LIMIT 1 `
  838. err = o.Raw(sql, chapterType).QueryRow(&item)
  839. return
  840. }
  841. // GetNewReportExist
  842. func GetNewReportExist(oldReportId int) (item *Report, err error) {
  843. o := orm.NewOrmUsingDB("rddp")
  844. sql := ` SELECT id FROM report WHERE old_report_id = ? LIMIT 1 `
  845. err = o.Raw(sql, oldReportId).QueryRow(&item)
  846. return
  847. }
  848. // PublishReportAndChapter 发布报告及章节
  849. func PublishReportAndChapter(reportInfo *Report, publishIds, unPublishIds []int, isPublishReport bool, cols []string) (err error) {
  850. o := orm.NewOrmUsingDB("rddp")
  851. to, err := o.Begin()
  852. if err != nil {
  853. return
  854. }
  855. defer func() {
  856. if err != nil {
  857. _ = to.Rollback()
  858. } else {
  859. _ = to.Commit()
  860. }
  861. }()
  862. // 更新报告
  863. if isPublishReport {
  864. if _, err = to.Update(reportInfo, cols...); err != nil {
  865. return
  866. }
  867. }
  868. // 发布章节
  869. if len(publishIds) > 0 {
  870. sql := ` UPDATE report_chapter SET publish_state = 2, publish_time = ? WHERE report_id = ? AND report_chapter_id IN (` + utils.GetOrmInReplace(len(publishIds)) + `) `
  871. _, err = to.Raw(sql, reportInfo.PublishTime, reportInfo.Id, publishIds).Exec()
  872. }
  873. if len(unPublishIds) > 0 {
  874. sql := ` UPDATE report_chapter SET publish_state = 1, publish_time = NULL, is_edit = 0 WHERE report_id = ? AND report_chapter_id IN (` + utils.GetOrmInReplace(len(unPublishIds)) + `) `
  875. _, err = to.Raw(sql, reportInfo.Id, unPublishIds).Exec()
  876. }
  877. return
  878. }
  879. func GetSyncEmptyVideoReport() (list []*Report, err error) {
  880. o := orm.NewOrmUsingDB("rddp")
  881. sql := ` SELECT id FROM report WHERE old_report_id > 0 AND state = 2 AND chapter_type = "" AND (video_size = "" OR video_play_seconds = "")
  882. UNION ALL
  883. SELECT DISTINCT report_id FROM report_chapter WHERE publish_state = 2 AND (video_size = "" OR video_play_seconds = "") `
  884. _, err = o.Raw(sql).QueryRows(&list)
  885. return
  886. }
  887. // PublishReportById 发布报告
  888. func PublishReportById(reportId int, publishTime time.Time) (err error) {
  889. o := orm.NewOrmUsingDB("rddp")
  890. sql := `UPDATE report SET state = 2, publish_time = ?, pre_publish_time=null, pre_msg_send=0, modify_time = NOW() WHERE id = ? `
  891. _, err = o.Raw(sql, publishTime, reportId).Exec()
  892. return
  893. }
  894. // ResetReportById 重置报告状态
  895. func ResetReportById(reportId, state int) (err error) {
  896. o := orm.NewOrmUsingDB("rddp")
  897. sql := `UPDATE report SET state = ?, pre_publish_time = null, pre_msg_send = 0, modify_time = NOW() WHERE id = ?`
  898. _, err = o.Raw(sql, state, reportId).Exec()
  899. return
  900. }
  901. // GetCommentReportByReportId 查询有留言的报告列表
  902. func GetCommentReportByReportId(condition string, pars []interface{}, startSize, pageSize int) (list []*Report, err error) {
  903. o := orm.NewOrmUsingDB("rddp")
  904. sql := `SELECT
  905. id,
  906. create_time,
  907. title,
  908. classify_name_first,
  909. classify_id_first,
  910. classify_name_second,
  911. classify_id_second,
  912. state,
  913. IF
  914. ( publish_time, publish_time, create_time ) AS publish_time
  915. FROM
  916. report
  917. WHERE
  918. 1=1
  919. `
  920. if condition != "" {
  921. sql += condition
  922. }
  923. sql += ` ORDER BY publish_time DESC , title ASC LIMIT ?,?`
  924. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&list)
  925. return
  926. }
  927. // GetCommentReportByReportIdOrderBy 查询有留言的报告列表(指定排序)
  928. func GetCommentReportByReportIdOrderBy(condition string, pars []interface{}, startSize, pageSize int, orderBy string) (list []*Report, err error) {
  929. o := orm.NewOrmUsingDB("rddp")
  930. sql := `SELECT
  931. id,
  932. create_time,
  933. title,
  934. classify_name_first,
  935. classify_id_first,
  936. classify_name_second,
  937. classify_id_second,
  938. state,
  939. IF
  940. ( publish_time, publish_time, create_time ) AS publish_time
  941. FROM
  942. report
  943. WHERE
  944. 1=1
  945. `
  946. if condition != "" {
  947. sql += condition
  948. }
  949. if orderBy == `` {
  950. sql += ` ORDER BY publish_time DESC , title ASC `
  951. } else {
  952. sql += orderBy
  953. }
  954. sql += ` LIMIT ?,? `
  955. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&list)
  956. return
  957. }
  958. // GetCommentReportTotalByReportId 查询有留言的报告列表总数
  959. func GetCommentReportTotalByReportId(condition string, pars []interface{}) (total int64, err error) {
  960. o := orm.NewOrmUsingDB("rddp")
  961. sql := `SELECT count(*)
  962. FROM report WHERE 1=1`
  963. if condition != "" {
  964. sql += condition
  965. }
  966. err = o.Raw(sql, pars).QueryRow(&total)
  967. return
  968. }
  969. // 点赞相关的报告列表
  970. type LikeReportItem struct {
  971. ReportId int `description:"报告Id"`
  972. ReportChapterId int `description:"报告章节Id"`
  973. ClassifyIdFirst int `description:"一级分类id"`
  974. ClassifyNameFirst string `description:"一级分类名称"`
  975. ClassifyIdSecond int `description:"二级分类id"`
  976. ClassifyNameSecond string `description:"二级分类名称"`
  977. ReportChapterTypeId int `description:"章节类型"`
  978. ReportChapterTypeName string `description:"品种名称"`
  979. PublishTime time.Time `description:"发布时间" `
  980. Title string `description:"标题"`
  981. }
  982. // GetLikeReportByReportIdReportChapterId 获取有被点赞的报告列表
  983. func GetLikeReportByReportIdReportChapterId(reportIds string, chapterIds string, orderStr string, startSize, pageSize int) (list []*LikeReportItem, err error) {
  984. o := orm.NewOrmUsingDB("rddp")
  985. sql := `( SELECT
  986. id AS report_id,
  987. 0 AS report_chapter_id,
  988. classify_id_first,
  989. classify_id_second,
  990. classify_name_first,
  991. classify_name_second,
  992. 0 as report_chapter_type_id,
  993. "" as report_chapter_type_name,
  994. publish_time,
  995. title
  996. FROM
  997. report
  998. WHERE
  999. classify_name_first != "晨报"
  1000. AND classify_name_first != "周报"
  1001. AND id in (` + reportIds + `)
  1002. )
  1003. UNION
  1004. ( SELECT
  1005. report_id,
  1006. report_chapter_id,
  1007. classify_id_first,
  1008. 0 as classify_id_second,
  1009. classify_name_first,
  1010. null as classify_name_second,
  1011. type_id as report_chapter_type_id,
  1012. type_name as report_chapter_type_name,
  1013. publish_time,
  1014. title
  1015. FROM
  1016. report_chapter
  1017. WHERE
  1018. report_chapter_id in (` + chapterIds + `)
  1019. )`
  1020. if orderStr != "" {
  1021. sql += ` ORDER BY FIELD(CONCAT(report_id, "-",report_chapter_id),` + orderStr + `)`
  1022. } else {
  1023. sql += ` ORDER BY publish_time DESC, report_id Desc`
  1024. }
  1025. sql += ` LIMIT ?,?`
  1026. _, err = o.Raw(sql, startSize, pageSize).QueryRows(&list)
  1027. return
  1028. }
  1029. // GetLikeReportTotalByReportIdReportChapterId 获取有被点赞的报告列表总数
  1030. func GetLikeReportTotalByReportIdReportChapterId(reportIds string, chapterIds string) (total int64, err error) {
  1031. o := orm.NewOrmUsingDB("rddp")
  1032. sql := `select count(*) from (( SELECT
  1033. id AS report_id,
  1034. 0 AS report_chapter_id,
  1035. classify_id_first,
  1036. classify_id_second,
  1037. classify_name_first,
  1038. classify_name_second,
  1039. 0 as report_chapter_type_id,
  1040. publish_time,
  1041. title
  1042. FROM
  1043. report
  1044. WHERE
  1045. classify_name_first != "晨报"
  1046. AND classify_name_first != "周报"
  1047. AND id in (` + reportIds + `)
  1048. )
  1049. UNION
  1050. ( SELECT
  1051. report_id,
  1052. report_chapter_id,
  1053. classify_id_first,
  1054. 0 as classify_id_second,
  1055. classify_name_first,
  1056. null as classify_name_second,
  1057. type_id as report_chapter_type_id,
  1058. publish_time,
  1059. title
  1060. FROM
  1061. report_chapter
  1062. WHERE
  1063. report_chapter_id in (` + chapterIds + `)
  1064. )) r`
  1065. err = o.Raw(sql).QueryRow(&total)
  1066. return
  1067. }
  1068. // GetPageReportList 分页获取报告列表
  1069. func GetPageReportList(condition string, pars []interface{}, startSize, pageSize int) (total int, items []*ReportList, err error) {
  1070. o := orm.NewOrmUsingDB("rddp")
  1071. sql := `SELECT * FROM report WHERE 1=1 `
  1072. sql += condition
  1073. sql += ` ORDER BY modify_time DESC`
  1074. totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  1075. err = o.Raw(totalSql, pars).QueryRow(&total)
  1076. if err != nil {
  1077. return
  1078. }
  1079. sql += ` LIMIT ?,? `
  1080. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  1081. return
  1082. }
  1083. // SunCodeReq 获取太阳码请求体
  1084. type SunCodeReq struct {
  1085. CodePage string `json:"CodePage" description:"太阳码page"`
  1086. CodeScene string `json:"CodeScene" description:"太阳码scene"`
  1087. }
  1088. // YbPcSuncode 活动海报表
  1089. type YbPcSuncode struct {
  1090. SuncodeID uint32 `orm:"column(suncode_id);pk" `
  1091. Scene string `gorm:"column:scene;type:varchar(255);not null;default:0" json:"scene"` // 微信scene
  1092. SceneMd5 string `gorm:"column:scene_md5;type:varchar(255);not null" json:"sceneMd5"`
  1093. CodePage string `gorm:"column:code_page;type:varchar(255);not null;default:''" json:"codePage"` // 路径
  1094. SuncodeUrl string `gorm:"column:suncode_url;type:varchar(255);not null;default:''" json:"suncodeUrl"` // 太阳码储存地址
  1095. CreateTime time.Time `gorm:"column:create_time;type:timestamp;default:CURRENT_TIMESTAMP" json:"createTime"`
  1096. }
  1097. // GetYbPcSunCode 获取太阳码
  1098. func GetYbPcSunCode(scene, page string) (item *YbPcSuncode, err error) {
  1099. o := orm.NewOrmUsingDB("weekly")
  1100. sql := `SELECT * FROM yb_pc_suncode WHERE scene = ? AND code_page = ? `
  1101. err = o.Raw(sql, scene, page).QueryRow(&item)
  1102. return
  1103. }
  1104. func AddYbPcSunCode(item *YbPcSuncode) (err error) {
  1105. o := orm.NewOrmUsingDB("weekly")
  1106. _, err = o.Insert(item)
  1107. return
  1108. }
  1109. // YbSuncodePars 小程序太阳码scene参数
  1110. type YbSuncodePars struct {
  1111. ID uint32 `orm:"column(id);pk" `
  1112. Scene string `gorm:"column:scene;type:varchar(255);not null;default:''" json:"scene"` // scene参数
  1113. SceneKey string `gorm:"column:scene_key;type:varchar(32);not null;default:''" json:"scene_key"` // MD5值
  1114. CreateTime time.Time `gorm:"column:create_time;type:datetime;default:CURRENT_TIMESTAMP" json:"createTime"`
  1115. }
  1116. func AddYbSuncodePars(item *YbSuncodePars) (err error) {
  1117. o := orm.NewOrmUsingDB("weekly")
  1118. _, err = o.Insert(item)
  1119. return
  1120. }
  1121. // UpdateReportSecondClassifyNameByClassifyId 更新报告分类名称字段
  1122. func UpdateReportSecondClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
  1123. o := orm.NewOrmUsingDB("rddp")
  1124. sql := " UPDATE report SET classify_name_second = ? WHERE classify_id_second = ? "
  1125. _, err = o.Raw(sql, classifyName, classifyId).Exec()
  1126. return
  1127. }
  1128. // UpdateReportFirstClassifyNameByClassifyId 更新报告分类一级名称字段
  1129. func UpdateReportFirstClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
  1130. o := orm.NewOrmUsingDB("rddp")
  1131. sql := " UPDATE report SET classify_name_first = ? WHERE classify_id_first = ? "
  1132. _, err = o.Raw(sql, classifyName, classifyId).Exec()
  1133. return
  1134. }
  1135. // UpdateReportSecondClassifyFirstNameByClassifyId 更新报告二级分类的一级分类名称和id
  1136. func UpdateReportSecondClassifyFirstNameByClassifyId(classifyId, newClassifyId int, classifyName string) (err error) {
  1137. o := orm.NewOrmUsingDB("rddp")
  1138. sql := " UPDATE report SET classify_name_first = ?, classify_id_first = ? WHERE classify_id_second = ? "
  1139. _, err = o.Raw(sql, classifyName, newClassifyId, classifyId).Exec()
  1140. return
  1141. }
  1142. // GetEmptyContentSubPPTReport 获取前两章为空的PPT报告
  1143. func GetEmptyContentSubPPTReport() (list []*Report, err error) {
  1144. sql := `SELECT
  1145. r.id,
  1146. r.content,
  1147. r.content_sub
  1148. FROM
  1149. report AS r
  1150. JOIN ppt_v2 AS p ON r.id = p.report_id
  1151. WHERE
  1152. p.report_id > 0 AND r.content_sub = ""`
  1153. _, err = orm.NewOrmUsingDB("rddp").Raw(sql).QueryRows(&list)
  1154. return
  1155. }
  1156. // ModifyReportAuthor 更改报告作者
  1157. func ModifyReportAuthor(condition string, pars []interface{}, authorName string) (count int, err error) {
  1158. //产品权限
  1159. oRddp := orm.NewOrmUsingDB("rddp")
  1160. sql := `UPDATE english_report set author = ? WHERE 1=1 `
  1161. if condition != "" {
  1162. sql += condition
  1163. }
  1164. err = oRddp.Raw(sql, authorName, pars).QueryRow(&count)
  1165. return
  1166. }
  1167. func UpdateReportPublishTime(reportId int, videoNameDate string) (err error) {
  1168. o := orm.NewOrmUsingDB("rddp")
  1169. sql1 := ` UPDATE report SET publish_time = NOW() WHERE id = ? `
  1170. _, err = o.Raw(sql1, reportId).Exec()
  1171. if err != nil {
  1172. return
  1173. }
  1174. //修改音频标题
  1175. sql2 := ` UPDATE report SET video_name=CONCAT(SUBSTRING_INDEX(video_name,"(",1),"` + videoNameDate + `") WHERE id = ? and (video_name !="" and video_name is not null)`
  1176. _, err = o.Raw(sql2, reportId).Exec()
  1177. return
  1178. }
  1179. func UpdateReportChapterPublishTime(reportId int, videoNameDate string) (err error) {
  1180. o := orm.NewOrmUsingDB("rddp")
  1181. sql1 := ` UPDATE report_chapter SET publish_time = NOW() WHERE report_id = ? `
  1182. _, err = o.Raw(sql1, reportId).Exec()
  1183. if err != nil {
  1184. return
  1185. }
  1186. //修改音频标题
  1187. sql2 := ` UPDATE report_chapter SET video_name=CONCAT(SUBSTRING_INDEX(video_name,"(",1),"` + videoNameDate + `") WHERE report_id = ? and (video_name !="" and video_name is not null)`
  1188. _, err = o.Raw(sql2, reportId).Exec()
  1189. return
  1190. }
  1191. // MarkEditReport 标记编辑英文研报的请求数据
  1192. type MarkEditReport struct {
  1193. ReportId int `description:"研报id"`
  1194. ReportChapterId int `description:"研报章节id"`
  1195. Status int `description:"标记状态,1:编辑中,2:编辑完成"`
  1196. }
  1197. type MarkReportResp struct {
  1198. Status int `description:"状态:0:无人编辑, 1:当前有人在编辑"`
  1199. Msg string `description:"提示信息"`
  1200. Editor string `description:"编辑者姓名"`
  1201. }
  1202. type MarkReportItem struct {
  1203. AdminId int `description:"编辑者ID"`
  1204. Editor string `description:"编辑者姓名"`
  1205. ReportClassifyNameFirst string
  1206. }
  1207. // GetReportByCondition 获取报告
  1208. func GetReportByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string, isPage bool, startSize, pageSize int) (items []*Report, err error) {
  1209. o := orm.NewOrmUsingDB("rddp")
  1210. fields := `*`
  1211. if len(fieldArr) > 0 {
  1212. fields = strings.Join(fieldArr, ",")
  1213. }
  1214. sql := `SELECT ` + fields + ` FROM report WHERE 1=1 `
  1215. sql += condition
  1216. order := ` ORDER BY modify_time DESC`
  1217. if orderRule != `` {
  1218. order = orderRule
  1219. }
  1220. sql += order
  1221. if isPage {
  1222. sql += ` LIMIT ?,?`
  1223. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  1224. } else {
  1225. _, err = o.Raw(sql, pars).QueryRows(&items)
  1226. }
  1227. return
  1228. }
  1229. // ModifyReportMsgIsSendV2 更新报告消息状态
  1230. func ModifyReportMsgIsSendV2(reportId int) (err error) {
  1231. o := orm.NewOrmUsingDB("rddp")
  1232. sql := `UPDATE report SET msg_is_send = 1, ths_msg_is_send = 1, msg_send_time = NOW() WHERE id = ? LIMIT 1`
  1233. _, err = o.Raw(sql, reportId).Exec()
  1234. return
  1235. }
  1236. // SetPrePublishReportById 设置定时发布
  1237. func SetPrePublishReportById(reportId int, prePublishTime string, preMsgSend int) (err error) {
  1238. o := orm.NewOrmUsingDB("rddp")
  1239. sql := `UPDATE report SET pre_publish_time=?, pre_msg_send=? WHERE id = ? and state = 1 `
  1240. _, err = o.Raw(sql, prePublishTime, preMsgSend, reportId).Exec()
  1241. return
  1242. }
  1243. // ReportSubmitApproveReq 提交审批请求体
  1244. type ReportSubmitApproveReq struct {
  1245. ReportId int `description:"报告ID"`
  1246. }
  1247. // ReportCancelApproveReq 撤回审批请求体
  1248. type ReportCancelApproveReq struct {
  1249. ReportId int `description:"报告ID"`
  1250. }
  1251. func (m *Report) GetItemById(id int) (item *Report, err error) {
  1252. o := orm.NewOrmUsingDB("rddp")
  1253. sql := `SELECT * FROM report WHERE id = ? LIMIT 1`
  1254. err = o.Raw(sql, id).QueryRow(&item)
  1255. return
  1256. }
  1257. // GetReportStateCount 获取指定状态的报告数量
  1258. func GetReportStateCount(state int) (count int, err error) {
  1259. o := orm.NewOrmUsingDB("rddp")
  1260. sql := `SELECT COUNT(1) AS count FROM report WHERE state = ?`
  1261. err = o.Raw(sql, state).QueryRow(&count)
  1262. return
  1263. }
  1264. // UpdateReportsStateByCond 批量更新报告状态
  1265. func UpdateReportsStateByCond(classifyFirstId, classifySecondId, oldState, newState int) (err error) {
  1266. o := orm.NewOrmUsingDB("rddp")
  1267. cond := ``
  1268. if classifyFirstId > 0 {
  1269. cond += fmt.Sprintf(` AND classify_id_first = %d`, classifyFirstId)
  1270. }
  1271. if classifySecondId > 0 {
  1272. cond += fmt.Sprintf(` AND classify_id_second = %d`, classifySecondId)
  1273. }
  1274. sql := fmt.Sprintf(`UPDATE report SET state = ?, pre_publish_time = NULL WHERE state = ? %s`, cond)
  1275. _, err = o.Raw(sql, newState, oldState).Exec()
  1276. return
  1277. }
  1278. // UpdateReportsStateBySecondIds 批量更新二级分类报告状态
  1279. func UpdateReportsStateBySecondIds(oldState, newState int, secondIds []int) (err error) {
  1280. if len(secondIds) <= 0 {
  1281. return
  1282. }
  1283. o := orm.NewOrmUsingDB("rddp")
  1284. // (有审批流的)未发布->待提交
  1285. sql := fmt.Sprintf(`UPDATE report SET state = ?, pre_publish_time = NULL WHERE state = ? AND classify_id_second IN (%s)`, utils.GetOrmInReplace(len(secondIds)))
  1286. _, err = o.Raw(sql, newState, oldState, secondIds).Exec()
  1287. if err != nil {
  1288. return
  1289. }
  1290. // (无审批流的)待提交->未发布
  1291. sql = fmt.Sprintf(`UPDATE report SET state = ?, pre_publish_time = NULL WHERE state = ? AND classify_id_second NOT IN (%s)`, utils.GetOrmInReplace(len(secondIds)))
  1292. _, err = o.Raw(sql, oldState, newState, secondIds).Exec()
  1293. return
  1294. }
  1295. // GetReportPdfUrlReq 获取报告pdf地址请求体
  1296. type GetReportPdfUrlReq struct {
  1297. ReportUrl string `description:"报告Url"`
  1298. ReportCode string `description:"报告Code"`
  1299. Type int `description:"类型 1-pdf 2-图片"`
  1300. }
  1301. func ModifyReportPdfUrl(reportId int, detailPdfUrl string) (err error) {
  1302. o := orm.NewOrmUsingDB("rddp")
  1303. sql := `UPDATE report SET detail_pdf_url=? WHERE id=? `
  1304. _, err = o.Raw(sql, detailPdfUrl, reportId).Exec()
  1305. return
  1306. }
  1307. func ModifyReportImgUrl(reportId int, detailImgUrl string) (err error) {
  1308. o := orm.NewOrmUsingDB("rddp")
  1309. sql := `UPDATE report SET detail_img_url=? WHERE id=? `
  1310. _, err = o.Raw(sql, detailImgUrl, reportId).Exec()
  1311. return
  1312. }
  1313. // UpdatePdfUrlReportById 清空pdf相关字段
  1314. func UpdatePdfUrlReportById(reportId int) (err error) {
  1315. o := orm.NewOrmUsingDB("rddp")
  1316. sql := `UPDATE report SET detail_img_url = '',detail_pdf_url='',modify_time=NOW() WHERE id = ? `
  1317. _, err = o.Raw(sql, reportId).Exec()
  1318. return
  1319. }
  1320. // EditChapterBaseInfoAndPermission
  1321. // @Description: 修改报告章节的基础信息、授权用户权限、品种权限
  1322. // @author: Roc
  1323. // @datetime 2024-06-05 11:45:04
  1324. // @param reportChapterInfo *ReportChapter
  1325. // @param updateCols []string
  1326. // @param addReportGrantList []*report.ReportGrant
  1327. // @param addReportChapterGrantList []report.ReportChapterGrant
  1328. // @param addChapterPermissionMap []*report.ReportChapterPermissionMapping
  1329. // @param delReportGrantIdList []int
  1330. // @param delReportChapterGrantIdList []int
  1331. // @param delChapterPermissionMappingIdList []int
  1332. // @return err error
  1333. func EditChapterBaseInfoAndPermission(reportChapterInfo *ReportChapter, updateCols []string, addReportGrantList []*report.ReportGrant, addReportChapterGrantList []*report.ReportChapterGrant, addChapterPermissionMap []*report.ReportChapterPermissionMapping, delReportGrantIdList, delReportChapterGrantIdList, delChapterPermissionMappingIdList []int) (err error) {
  1334. o := orm.NewOrmUsingDB("rddp")
  1335. to, err := o.Begin()
  1336. if err != nil {
  1337. return
  1338. }
  1339. defer func() {
  1340. if err != nil {
  1341. _ = to.Rollback()
  1342. } else {
  1343. _ = to.Commit()
  1344. }
  1345. }()
  1346. // 变更报告章节信息
  1347. if len(updateCols) > 0 {
  1348. _, err = to.Update(reportChapterInfo, updateCols...)
  1349. if err != nil {
  1350. return
  1351. }
  1352. }
  1353. // 新增报告授权用户
  1354. if len(addReportGrantList) > 0 {
  1355. _, err = to.InsertMulti(500, addReportGrantList)
  1356. if err != nil {
  1357. return
  1358. }
  1359. }
  1360. // 删除报告授权用户
  1361. delNum := len(delReportGrantIdList)
  1362. if delNum > 0 {
  1363. sql := `DELETE FROM report_grant WHERE grant_id IN (` + utils.GetOrmInReplace(delNum) + `)`
  1364. _, err = to.Raw(sql, delReportGrantIdList).Exec()
  1365. if err != nil {
  1366. return
  1367. }
  1368. }
  1369. // 新增报告章节授权用户
  1370. if len(addReportChapterGrantList) > 0 {
  1371. _, err = to.InsertMulti(500, addReportChapterGrantList)
  1372. if err != nil {
  1373. return
  1374. }
  1375. }
  1376. // 删除报告章节授权用户
  1377. delNum = len(delReportChapterGrantIdList)
  1378. if delNum > 0 {
  1379. sql := `DELETE FROM report_chapter_grant WHERE grant_id IN (` + utils.GetOrmInReplace(delNum) + `)`
  1380. _, err = to.Raw(sql, delReportChapterGrantIdList).Exec()
  1381. if err != nil {
  1382. return
  1383. }
  1384. }
  1385. // 新增报告章节的品种配置
  1386. if len(addChapterPermissionMap) > 0 {
  1387. _, err = to.InsertMulti(500, addChapterPermissionMap)
  1388. if err != nil {
  1389. return
  1390. }
  1391. }
  1392. // 删除报告章节的品种配置
  1393. delNum = len(delChapterPermissionMappingIdList)
  1394. if delNum > 0 {
  1395. sql := `DELETE FROM report_chapter_permission_mapping WHERE report_chapter_permission_mapping_id IN (` + utils.GetOrmInReplace(delNum) + `)`
  1396. _, err = to.Raw(sql, delChapterPermissionMappingIdList).Exec()
  1397. if err != nil {
  1398. return
  1399. }
  1400. }
  1401. return
  1402. }
  1403. // GetReportListCountByAuthorized
  1404. // @Description: 获取有权限的报告列表的报告数量
  1405. // @author: Roc
  1406. // @datetime 2024-05-30 15:14:01
  1407. // @param condition string
  1408. // @param pars []interface{}
  1409. // @return count int
  1410. // @return err error
  1411. func GetReportListCountByAuthorized(condition string, pars []interface{}) (count int, err error) {
  1412. o := orm.NewOrmUsingDB("rddp")
  1413. sql := `SELECT COUNT(1) AS count FROM report as a
  1414. WHERE 1=1 `
  1415. if condition != "" {
  1416. sql += condition
  1417. }
  1418. err = o.Raw(sql, pars).QueryRow(&count)
  1419. return
  1420. }
  1421. // GetReportListByAuthorized
  1422. // @Description: 获取有权限的报告列表的数据
  1423. // @author: Roc
  1424. // @datetime 2024-05-30 15:15:07
  1425. // @param condition string
  1426. // @param pars []interface{}
  1427. // @param startSize int
  1428. // @param pageSize int
  1429. // @return items []*ReportList
  1430. // @return err error
  1431. func GetReportListByAuthorized(condition string, pars []interface{}, startSize, pageSize int) (items []*ReportList, err error) {
  1432. o := orm.NewOrmUsingDB("rddp")
  1433. sql := `SELECT id,classify_id_first,classify_name_first,classify_id_second,classify_name_second,classify_id_third,classify_name_third,title,stage,create_time FROM report as a WHERE 1=1 `
  1434. if condition != "" {
  1435. sql += condition
  1436. }
  1437. // 排序:1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过
  1438. sql += ` GROUP BY a.id ORDER BY FIELD(state,3,1,4,5,6,2), modify_time DESC LIMIT ?,?`
  1439. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  1440. return
  1441. }