report.go 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110
  1. package models
  2. import (
  3. "eta/eta_api/utils"
  4. "github.com/beego/beego/v2/client/orm"
  5. "github.com/rdlucklib/rdluck_tools/paging"
  6. "strings"
  7. "time"
  8. )
  9. // 报告状态
  10. const (
  11. ReportStateUnpublished = 1 // 未发布
  12. ReportStatePublished = 2 // 已发布
  13. ReportStateWaitSubmit = 3 // 待提交
  14. ReportStateWaitApprove = 4 // 审批中
  15. ReportStateRefused = 5 // 已驳回
  16. ReportStatePass = 6 // 已通过
  17. )
  18. // 报告操作
  19. const (
  20. ReportOperateAdd = 1 // 新增报告
  21. ReportOperateEdit = 2 // 编辑报告
  22. ReportOperatePublish = 3 // 发布报告
  23. ReportOperateCancelPublish = 4 // 取消发布报告
  24. ReportOperateSubmitApprove = 5 // 提交审批
  25. ReportOperateCancelApprove = 6 // 撤回审批
  26. )
  27. type Report struct {
  28. Id int `orm:"column(id)" description:"报告Id"`
  29. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  30. ClassifyIdFirst int `description:"一级分类id"`
  31. ClassifyNameFirst string `description:"一级分类名称"`
  32. ClassifyIdSecond int `description:"二级分类id"`
  33. ClassifyNameSecond string `description:"二级分类名称"`
  34. Title string `description:"标题"`
  35. Abstract string `description:"摘要"`
  36. Author string `description:"作者"`
  37. Frequency string `description:"频度"`
  38. CreateTime string `description:"创建时间"`
  39. ModifyTime time.Time `description:"修改时间"`
  40. State int `description:"1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过"`
  41. PublishTime time.Time `description:"发布时间"`
  42. Stage int `description:"期数"`
  43. MsgIsSend int `description:"消息是否已发送,0:否,1:是"`
  44. ThsMsgIsSend int `description:"客户群消息是否已发送,0:否,1:是"`
  45. Content string `description:"内容"`
  46. VideoUrl string `description:"音频文件URL"`
  47. VideoName string `description:"音频文件名称"`
  48. VideoPlaySeconds string `description:"音频播放时长"`
  49. VideoSize string `description:"音频文件大小,单位M"`
  50. ContentSub string `description:"内容前两个章节"`
  51. ReportCode string `description:"报告唯一编码"`
  52. ReportVersion int `description:"1:旧版,2:新版"`
  53. HasChapter int `description:"是否有章节 0-否 1-是"`
  54. ChapterType string `description:"章节类型 day-晨报 week-周报"`
  55. OldReportId int `description:"research_report表ID, 大于0则表示该报告为老后台同步过来的"`
  56. MsgSendTime time.Time `description:"模版消息发送时间"`
  57. AdminId int `description:"创建者账号"`
  58. AdminRealName string `description:"创建者姓名"`
  59. ApproveTime time.Time `description:"审批时间"`
  60. ApproveId int `description:"审批ID"`
  61. }
  62. type ReportList struct {
  63. Id int `description:"报告Id"`
  64. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  65. ClassifyIdFirst int `description:"一级分类id"`
  66. ClassifyNameFirst string `description:"一级分类名称"`
  67. ClassifyIdSecond int `description:"二级分类id"`
  68. ClassifyNameSecond string `description:"二级分类名称"`
  69. Title string `description:"标题"`
  70. Abstract string `description:"摘要"`
  71. Author string `description:"作者"`
  72. Frequency string `description:"频度"`
  73. CreateTime string `description:"创建时间"`
  74. ModifyTime time.Time `description:"修改时间"`
  75. State int `description:"1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过"`
  76. PublishTime string `description:"发布时间"`
  77. PrePublishTime string `description:"预发布时间"`
  78. Stage int `description:"期数"`
  79. MsgIsSend int `description:"模板消息是否已发送,0:否,1:是"`
  80. Content string `description:"内容"`
  81. VideoUrl string `description:"音频文件URL"`
  82. VideoName string `description:"音频文件名称"`
  83. VideoPlaySeconds string `description:"音频播放时长"`
  84. ContentSub string `description:"内容前两个章节"`
  85. Pv int `description:"Pv"`
  86. Uv int `description:"Uv"`
  87. ReportCode string `description:"报告唯一编码"`
  88. ReportVersion int `description:"1:旧版,2:新版"`
  89. ThsMsgIsSend int `description:"客户群消息是否已发送,0:否,1:是"`
  90. NeedThsMsg int `description:"是否需要推送客群消息 0-否 1-是"`
  91. HasChapter int `description:"是否有章节 0-否 1-是"`
  92. ChapterType string `description:"章节类型 day-晨报 week-周报"`
  93. ChapterVideoList []*ReportChapterVideoList `description:"章节音频列表"`
  94. OldReportId int `description:"research_report表ID, 大于0则表示该报告为老后台同步过来的"`
  95. MsgSendTime string `description:"模版消息发送时间"`
  96. CanEdit bool `description:"是否可编辑"`
  97. Editor string `description:"编辑人"`
  98. AdminId int `description:"创建者账号"`
  99. AdminRealName string `description:"创建者姓名"`
  100. ApproveTime string `description:"审批时间"`
  101. }
  102. type ReportListResp struct {
  103. List []*ReportList
  104. Paging *paging.PagingItem `description:"分页数据"`
  105. }
  106. func GetReportListCount(condition string, pars []interface{}, companyType string) (count int, err error) {
  107. //产品权限
  108. companyTypeSqlStr := ``
  109. if companyType == "ficc" {
  110. companyTypeSqlStr = " AND classify_id_first != 40 "
  111. } else if companyType == "权益" {
  112. companyTypeSqlStr = " AND classify_id_first = 40 "
  113. }
  114. oRddp := orm.NewOrmUsingDB("rddp")
  115. sql := `SELECT COUNT(1) AS count FROM report WHERE 1=1 ` + companyTypeSqlStr
  116. if condition != "" {
  117. sql += condition
  118. }
  119. err = oRddp.Raw(sql, pars).QueryRow(&count)
  120. return
  121. }
  122. func GetReportList(condition string, pars []interface{}, companyType string, startSize, pageSize int) (items []*ReportList, err error) {
  123. o := orm.NewOrmUsingDB("rddp")
  124. //产品权限
  125. companyTypeSqlStr := ``
  126. if companyType == "ficc" {
  127. companyTypeSqlStr = " AND classify_id_first != 40 "
  128. } else if companyType == "权益" {
  129. companyTypeSqlStr = " AND classify_id_first = 40 "
  130. }
  131. sql := `SELECT *,
  132. (SELECT COUNT(1) FROM report_view_record AS rvr WHERE rvr.report_id=report.id) AS pv,
  133. (SELECT COUNT(DISTINCT user_id) FROM report_view_record AS rvr WHERE rvr.report_id=report.id) AS uv
  134. FROM report WHERE 1=1 ` + companyTypeSqlStr
  135. if condition != "" {
  136. sql += condition
  137. }
  138. // 排序:1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过
  139. sql += `ORDER BY FIELD(state,3,1,4,5,6,2), modify_time DESC LIMIT ?,?`
  140. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  141. return
  142. }
  143. // PublishReport 发布报告
  144. func PublishReport(reportIds []int) (err error) {
  145. if len(reportIds) == 0 {
  146. return
  147. }
  148. o := orm.NewOrmUsingDB("rddp")
  149. sql := `UPDATE report SET state=2,publish_time=now(),modify_time=NOW() WHERE id IN (` + utils.GetOrmInReplace(len(reportIds)) + `)`
  150. _, err = o.Raw(sql).Exec()
  151. return
  152. }
  153. // PublishCancelReport 取消发布报告
  154. func PublishCancelReport(reportId, state int, publishTimeNullFlag bool) (err error) {
  155. o := orm.NewOrmUsingDB("rddp")
  156. var sql string
  157. if publishTimeNullFlag {
  158. sql = ` UPDATE report SET state=?, publish_time=null, pre_publish_time=null, pre_msg_send=0 WHERE id =?`
  159. } else {
  160. sql = ` UPDATE report SET state=?, pre_publish_time=null, pre_msg_send=0 WHERE id =?`
  161. }
  162. _, err = o.Raw(sql, state, reportId).Exec()
  163. return
  164. }
  165. // 删除报告
  166. func DeleteReport(reportIds int) (err error) {
  167. o := orm.NewOrmUsingDB("rddp")
  168. sql := ` DELETE FROM report WHERE id =? `
  169. _, err = o.Raw(sql, reportIds).Exec()
  170. return
  171. }
  172. type ReportDetail struct {
  173. Id int `orm:"column(id)" description:"报告Id"`
  174. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  175. ClassifyIdFirst int `description:"一级分类id"`
  176. ClassifyNameFirst string `description:"一级分类名称"`
  177. ClassifyIdSecond int `description:"二级分类id"`
  178. ClassifyNameSecond string `description:"二级分类名称"`
  179. Title string `description:"标题"`
  180. Abstract string `description:"摘要"`
  181. Author string `description:"作者"`
  182. Frequency string `description:"频度"`
  183. CreateTime string `description:"创建时间"`
  184. ModifyTime string `description:"修改时间"`
  185. State int `description:"1:未发布,2:已发布"`
  186. PublishTime string `description:"发布时间"`
  187. PrePublishTime string `description:"预发布时间"`
  188. Stage int `description:"期数"`
  189. MsgIsSend int `description:"消息是否已发送,0:否,1:是"`
  190. PreMsgSend int `description:"定时发布成功后是否立即推送模版消息:0否,1是"`
  191. Content string `description:"内容"`
  192. VideoUrl string `description:"音频文件URL"`
  193. VideoName string `description:"音频文件名称"`
  194. VideoPlaySeconds string `description:"音频播放时长"`
  195. ContentSub string `description:"内容前两个章节"`
  196. ThsMsgIsSend int `description:"客户群消息是否已发送,0:否,1:是"`
  197. HasChapter int `description:"是否有章节 0-否 1-是"`
  198. ChapterType string `description:"章节类型 day-晨报 week-周报"`
  199. }
  200. func GetReportById(reportId int) (item *ReportDetail, err error) {
  201. o := orm.NewOrmUsingDB("rddp")
  202. sql := `SELECT * FROM report WHERE id=?`
  203. err = o.Raw(sql, reportId).QueryRow(&item)
  204. return
  205. }
  206. func GetReportByIds(reportIds string) (list []*ReportDetail, err error) {
  207. o := orm.NewOrmUsingDB("rddp")
  208. sql := `SELECT * FROM report WHERE id in ` + reportIds
  209. _, err = o.Raw(sql).QueryRows(&list)
  210. return
  211. }
  212. // GetSimpleReportByIds 根据报告ID查询报告基本信息
  213. func GetSimpleReportByIds(reportIds []int) (list []*ReportDetail, err error) {
  214. if len(reportIds) == 0 {
  215. return
  216. }
  217. o := orm.NewOrmUsingDB("rddp")
  218. sql := `SELECT id, title FROM report WHERE id IN (` + utils.GetOrmInReplace(len(reportIds)) + `)`
  219. _, err = o.Raw(sql, reportIds).QueryRows(&list)
  220. return
  221. }
  222. func GetReportStage(classifyIdFirst, classifyIdSecond int) (count int, err error) {
  223. o := orm.NewOrmUsingDB("rddp")
  224. sql := ``
  225. if classifyIdSecond > 0 {
  226. sql = "SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_second=? "
  227. o.Raw(sql, classifyIdSecond).QueryRow(&count)
  228. } else {
  229. sql = "SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_first=? "
  230. o.Raw(sql, classifyIdFirst).QueryRow(&count)
  231. }
  232. return
  233. }
  234. func GetReportStageEdit(classifyIdFirst, classifyIdSecond, reportId int) (count int, err error) {
  235. o := orm.NewOrmUsingDB("rddp")
  236. sql := ``
  237. if classifyIdSecond > 0 {
  238. sql = "SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_second=? AND id<>? "
  239. o.Raw(sql, classifyIdSecond, reportId).QueryRow(&count)
  240. } else {
  241. sql = "SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_first=? AND id<>? "
  242. o.Raw(sql, classifyIdFirst, reportId).QueryRow(&count)
  243. }
  244. return
  245. }
  246. type PublishReq struct {
  247. ReportIds string `description:"报告id,多个用英文逗号隔开"`
  248. }
  249. type PublishCancelReq struct {
  250. ReportIds int `description:"报告id"`
  251. }
  252. type DeleteReq struct {
  253. ReportIds int `description:"报告id"`
  254. }
  255. type AddReq struct {
  256. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  257. ClassifyIdFirst int `description:"一级分类id"`
  258. ClassifyNameFirst string `description:"一级分类名称"`
  259. ClassifyIdSecond int `description:"二级分类id"`
  260. ClassifyNameSecond string `description:"二级分类名称"`
  261. Title string `description:"标题"`
  262. Abstract string `description:"摘要"`
  263. Author string `description:"作者"`
  264. Frequency string `description:"频度"`
  265. State int `description:"状态:1:未发布,2:已发布"`
  266. Content string `description:"内容"`
  267. CreateTime string `description:"创建时间"`
  268. ReportVersion int `description:"1:旧版,2:新版"`
  269. }
  270. type PrePublishReq struct {
  271. ReportId int `description:"报告id"`
  272. PrePublishTime string `description:"预发布时间"`
  273. PreMsgSend int `description:"定时发布成功后是否立即推送模版消息:0否,1是"`
  274. }
  275. type AddResp struct {
  276. ReportId int64 `description:"报告id"`
  277. ReportCode string `description:"报告code"`
  278. }
  279. func AddReport(item *Report) (lastId int64, err error) {
  280. o := orm.NewOrmUsingDB("rddp")
  281. lastId, err = o.Insert(item)
  282. return
  283. }
  284. type EditReq struct {
  285. ReportId int64 `description:"报告id"`
  286. ClassifyIdFirst int `description:"一级分类id"`
  287. ClassifyNameFirst string `description:"一级分类名称"`
  288. ClassifyIdSecond int `description:"二级分类id"`
  289. ClassifyNameSecond string `description:"二级分类名称"`
  290. Title string `description:"标题"`
  291. Abstract string `description:"摘要"`
  292. Author string `description:"作者"`
  293. Frequency string `description:"频度"`
  294. State int `description:"状态:1:未发布,2:已发布"`
  295. Content string `description:"内容"`
  296. CreateTime string `description:"创建时间"`
  297. }
  298. type EditResp struct {
  299. ReportId int64 `description:"报告id"`
  300. ReportCode string `description:"报告code"`
  301. }
  302. func EditReport(item *Report, reportId int64) (err error) {
  303. o := orm.NewOrmUsingDB("rddp")
  304. sql := `UPDATE report
  305. SET
  306. classify_id_first =?,
  307. classify_name_first = ?,
  308. classify_id_second = ?,
  309. classify_name_second = ?,
  310. title = ?,
  311. abstract = ?,
  312. author = ?,
  313. frequency = ?,
  314. state = ?,
  315. content = ?,
  316. content_sub = ?,
  317. stage =?,
  318. create_time = ?,
  319. modify_time = ?
  320. WHERE id = ? `
  321. _, err = o.Raw(sql, item.ClassifyIdFirst, item.ClassifyNameFirst, item.ClassifyIdSecond, item.ClassifyNameSecond, item.Title,
  322. item.Abstract, item.Author, item.Frequency, item.State, item.Content, item.ContentSub, item.Stage, item.CreateTime, time.Now(), reportId).Exec()
  323. return
  324. }
  325. type ReportDetailReq struct {
  326. ReportId int `description:"报告id"`
  327. }
  328. type ClassifyIdDetailReq struct {
  329. ClassifyIdFirst int `description:"报告一级分类id"`
  330. ClassifyIdSecond int `description:"报告二级分类id"`
  331. }
  332. func GetReportDetailByClassifyId(classifyIdFirst, classifyIdSecond int) (item *Report, err error) {
  333. o := orm.NewOrmUsingDB("rddp")
  334. sql := ` SELECT * FROM report WHERE 1=1 `
  335. if classifyIdSecond > 0 {
  336. sql = sql + ` AND classify_id_second=? ORDER BY stage DESC LIMIT 1`
  337. err = o.Raw(sql, classifyIdSecond).QueryRow(&item)
  338. } else {
  339. sql = sql + ` AND classify_id_first=? ORDER BY stage DESC LIMIT 1`
  340. err = o.Raw(sql, classifyIdFirst).QueryRow(&item)
  341. }
  342. return
  343. }
  344. type SendTemplateMsgReq struct {
  345. ReportId int `description:"报告id"`
  346. }
  347. func ModifyReportMsgIsSend(reportId int) (err error) {
  348. o := orm.NewOrmUsingDB("rddp")
  349. report, err := GetReportById(reportId)
  350. if err != nil {
  351. return
  352. }
  353. if report.MsgIsSend == 0 {
  354. sql := `UPDATE report SET msg_is_send = 1, msg_send_time=NOW() WHERE id = ? `
  355. _, err = o.Raw(sql, reportId).Exec()
  356. }
  357. return
  358. }
  359. func ModifyReportVideo(reportId int, videoUrl, videoName, videoSize string, playSeconds float64) (err error) {
  360. o := orm.NewOrmUsingDB("rddp")
  361. sql := `UPDATE report SET video_url=?,video_name=?,video_play_seconds=?,video_size=? WHERE id=? `
  362. _, err = o.Raw(sql, videoUrl, videoName, playSeconds, videoSize, reportId).Exec()
  363. return
  364. }
  365. type ReportItem struct {
  366. Id int `orm:"column(id)" description:"报告Id"`
  367. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  368. ClassifyIdFirst int `description:"一级分类id"`
  369. ClassifyNameFirst string `description:"一级分类名称"`
  370. ClassifyIdSecond int `description:"二级分类id"`
  371. ClassifyNameSecond string `description:"二级分类名称"`
  372. Title string `description:"标题"`
  373. Abstract string `description:"摘要"`
  374. Author string `description:"作者"`
  375. Frequency string `description:"频度"`
  376. CreateTime time.Time `description:"创建时间"`
  377. ModifyTime time.Time `description:"修改时间"`
  378. State int `description:"1:未发布,2:已发布"`
  379. PublishTime time.Time `description:"发布时间"`
  380. Stage int `description:"期数"`
  381. MsgIsSend int `description:"消息是否已发送,0:否,1:是"`
  382. Content string `description:"内容"`
  383. VideoUrl string `description:"音频文件URL"`
  384. VideoName string `description:"音频文件名称"`
  385. VideoPlaySeconds string `description:"音频播放时长"`
  386. ContentSub string `description:"内容前两个章节"`
  387. }
  388. func GetReportItemById(reportId int) (item *ReportItem, err error) {
  389. o := orm.NewOrmUsingDB("rddp")
  390. sql := `SELECT * FROM report WHERE id=?`
  391. err = o.Raw(sql, reportId).QueryRow(&item)
  392. return
  393. }
  394. type SaveReportContent struct {
  395. Content string `description:"内容"`
  396. ReportId int `description:"报告id"`
  397. NoChange int `description:"内容是否未改变:1:内容未改变"`
  398. }
  399. func EditReportContent(reportId int, content, contentSub string) (err error) {
  400. o := orm.NewOrmUsingDB("rddp")
  401. sql := ` UPDATE report SET content=?,content_sub=?,modify_time=NOW() WHERE id=? `
  402. _, err = o.Raw(sql, content, contentSub, reportId).Exec()
  403. return
  404. }
  405. func AddReportSaveLog(reportId, adminId int, content, contentSub, adminName string) (err error) {
  406. o := orm.NewOrmUsingDB("rddp")
  407. sql := ` INSERT INTO report_save_log(report_id, content,content_sub,admin_id,admin_name) VALUES (?,?,?,?,?) `
  408. _, err = o.Raw(sql, reportId, content, contentSub, adminId, adminName).Exec()
  409. return
  410. }
  411. func MultiAddReportChaptersSaveLog(items []*ReportChapter, adminId int, adminRealName string) (err error) {
  412. o := orm.NewOrmUsingDB("rddp")
  413. p, err := o.Raw(`INSERT INTO report_save_log(report_id, report_chapter_id, content, content_sub, admin_id, admin_name) VALUES (?,?,?,?,?,?)`).Prepare()
  414. if err != nil {
  415. return
  416. }
  417. defer func() {
  418. _ = p.Close()
  419. }()
  420. for _, v := range items {
  421. _, err = p.Exec(v.ReportId, v.ReportChapterId, v.Content, v.ContentSub, adminId, adminRealName)
  422. if err != nil {
  423. return
  424. }
  425. }
  426. return
  427. }
  428. type SaveReportContentResp struct {
  429. ReportId int `description:"报告id"`
  430. }
  431. func ModifyReportCode(reportId int64, reportCode string) (err error) {
  432. o := orm.NewOrmUsingDB("rddp")
  433. sql := `UPDATE report SET report_code=? WHERE id=? `
  434. _, err = o.Raw(sql, reportCode, reportId).Exec()
  435. return
  436. }
  437. func ModifyReportThsMsgIsSend(item *ReportDetail) (err error) {
  438. o := orm.NewOrmUsingDB("rddp")
  439. if item.ThsMsgIsSend == 0 {
  440. sql := `UPDATE report SET ths_msg_is_send = 1 WHERE id = ? `
  441. _, err = o.Raw(sql, item.Id).Exec()
  442. }
  443. return
  444. }
  445. type ThsSendTemplateMsgReq struct {
  446. ReportId []int `description:"报告id"`
  447. }
  448. type PublishDayWeekReportReq struct {
  449. ReportId int `description:"报告ID"`
  450. }
  451. // SaveDayWeekReportReq 新增晨报周报请求体
  452. type SaveDayWeekReportReq struct {
  453. ReportId int `description:"报告ID"`
  454. Title string `description:"标题"`
  455. ReportType string `description:"一级分类ID"`
  456. Author string `description:"作者"`
  457. CreateTime string `description:"创建时间"`
  458. }
  459. // GetDayWeekReportStage 获取晨报周报期数
  460. func GetDayWeekReportStage(classifyIdFirst int, yearStart time.Time) (count int, err error) {
  461. o := orm.NewOrmUsingDB("rddp")
  462. sql := " SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_first = ? AND create_time > ? "
  463. o.Raw(sql, classifyIdFirst, yearStart).QueryRow(&count)
  464. return
  465. }
  466. // AddReportAndChapter 新增报告及章节
  467. func AddReportAndChapter(reportItem *Report, chapterItemList []*ReportChapter) (reportId int64, err error) {
  468. o := orm.NewOrmUsingDB("rddp")
  469. to, err := o.Begin()
  470. if err != nil {
  471. return
  472. }
  473. defer func() {
  474. if err != nil {
  475. _ = to.Rollback()
  476. } else {
  477. _ = to.Commit()
  478. }
  479. }()
  480. if reportId, err = to.Insert(reportItem); err != nil {
  481. return
  482. }
  483. if len(chapterItemList) > 0 {
  484. for _, chapterItem := range chapterItemList {
  485. chapterItem.ReportId = int(reportId)
  486. cpId, tmpErr := to.Insert(chapterItem)
  487. if tmpErr != nil {
  488. return
  489. }
  490. chapterItem.ReportChapterId = int(cpId)
  491. }
  492. }
  493. return
  494. }
  495. // GetReportByReportId 主键获取报告
  496. func GetReportByReportId(reportId int) (item *Report, err error) {
  497. o := orm.NewOrmUsingDB("rddp")
  498. sql := `SELECT * FROM report WHERE id = ?`
  499. err = o.Raw(sql, reportId).QueryRow(&item)
  500. return
  501. }
  502. // GetReportByOldReportId 根据老报告id主键获取报告
  503. func GetReportByOldReportId(reportId int) (item *Report, err error) {
  504. o := orm.NewOrmUsingDB("rddp")
  505. sql := `SELECT * FROM report WHERE old_report_id = ?`
  506. err = o.Raw(sql, reportId).QueryRow(&item)
  507. return
  508. }
  509. // DeleteDayWeekReportAndChapter 删除晨周报及章节
  510. func DeleteDayWeekReportAndChapter(reportId int) (err error) {
  511. o := orm.NewOrmUsingDB("rddp")
  512. to, err := o.Begin()
  513. if err != nil {
  514. return
  515. }
  516. defer func() {
  517. if err != nil {
  518. _ = to.Rollback()
  519. } else {
  520. _ = to.Commit()
  521. }
  522. }()
  523. sql := ` DELETE FROM report WHERE id = ? LIMIT 1 `
  524. if _, err = to.Raw(sql, reportId).Exec(); err != nil {
  525. return
  526. }
  527. sql = ` DELETE FROM report_chapter WHERE report_id = ? `
  528. if _, err = to.Raw(sql, reportId).Exec(); err != nil {
  529. return
  530. }
  531. return
  532. }
  533. // UpdateReport 更新报告
  534. func (reportInfo *Report) UpdateReport(cols []string) (err error) {
  535. o := orm.NewOrmUsingDB("rddp")
  536. _, err = o.Update(reportInfo, cols...)
  537. return
  538. }
  539. // 晨周报详情
  540. type ReportDetailView struct {
  541. *ReportDetail
  542. ChapterList []*ReportChapter
  543. }
  544. func GetUnPublishDayReport(startTime time.Time, endTime time.Time) (item *Report, err error) {
  545. o := orm.NewOrmUsingDB("rddp")
  546. sql := ` SELECT
  547. *
  548. FROM
  549. report AS a
  550. WHERE
  551. a.has_chapter = 1
  552. AND a.chapter_type = "day"
  553. AND a.state = 1
  554. AND (
  555. a.create_time BETWEEN ? AND ?
  556. )
  557. ORDER BY
  558. a.create_time DESC
  559. LIMIT 1 `
  560. err = o.Raw(sql, startTime, endTime).QueryRow(&item)
  561. return
  562. }
  563. type ElasticReportDetail struct {
  564. ReportId int `description:"报告ID"`
  565. ReportChapterId int `description:"报告章节ID"`
  566. Title string `description:"标题"`
  567. Abstract string `description:"摘要"`
  568. BodyContent string `description:"内容"`
  569. PublishTime string `description:"发布时间"`
  570. PublishState int `description:"发布状态 1-未发布 2-已发布"`
  571. Author string `description:"作者"`
  572. ClassifyIdFirst int `description:"一级分类ID"`
  573. ClassifyNameFirst string `description:"一级分类名称"`
  574. ClassifyIdSecond int `description:"二级分类ID"`
  575. ClassifyNameSecond string `description:"二级分类名称"`
  576. Categories string `description:"关联的品种名称(包括品种别名)"`
  577. StageStr string `description:"报告期数"`
  578. BodyMd5 string `description:"MD5加密之后的内容"`
  579. }
  580. // GetLastPublishedDayWeekReport 获取上一篇已发布的晨周报
  581. func GetLastPublishDayWeekReport(chapterType string) (item *Report, err error) {
  582. o := orm.NewOrmUsingDB("rddp")
  583. sql := ` SELECT * FROM report WHERE has_chapter = 1 AND chapter_type = ? AND state = 2 ORDER BY publish_time DESC LIMIT 1 `
  584. err = o.Raw(sql, chapterType).QueryRow(&item)
  585. return
  586. }
  587. // GetNewReportExist
  588. func GetNewReportExist(oldReportId int) (item *Report, err error) {
  589. o := orm.NewOrmUsingDB("rddp")
  590. sql := ` SELECT id FROM report WHERE old_report_id = ? LIMIT 1 `
  591. err = o.Raw(sql, oldReportId).QueryRow(&item)
  592. return
  593. }
  594. // PublishReportAndChapter 发布报告及章节
  595. func PublishReportAndChapter(reportInfo *Report, publishIds, unPublishIds []int, isPublishReport bool, cols []string) (err error) {
  596. o := orm.NewOrmUsingDB("rddp")
  597. to, err := o.Begin()
  598. if err != nil {
  599. return
  600. }
  601. defer func() {
  602. if err != nil {
  603. _ = to.Rollback()
  604. } else {
  605. _ = to.Commit()
  606. }
  607. }()
  608. // 更新报告
  609. if isPublishReport {
  610. if _, err = to.Update(reportInfo, cols...); err != nil {
  611. return
  612. }
  613. }
  614. // 发布章节
  615. if len(publishIds) > 0 {
  616. sql := ` UPDATE report_chapter SET publish_state = 2, publish_time = ? WHERE report_id = ? AND report_chapter_id IN (` + utils.GetOrmInReplace(len(publishIds)) + `) `
  617. _, err = to.Raw(sql, reportInfo.PublishTime, reportInfo.Id, publishIds).Exec()
  618. }
  619. if len(unPublishIds) > 0 {
  620. 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)) + `) `
  621. _, err = to.Raw(sql, reportInfo.Id, unPublishIds).Exec()
  622. }
  623. return
  624. }
  625. func GetSyncEmptyVideoReport() (list []*Report, err error) {
  626. o := orm.NewOrmUsingDB("rddp")
  627. sql := ` SELECT id FROM report WHERE old_report_id > 0 AND state = 2 AND chapter_type = "" AND (video_size = "" OR video_play_seconds = "")
  628. UNION ALL
  629. SELECT DISTINCT report_id FROM report_chapter WHERE publish_state = 2 AND (video_size = "" OR video_play_seconds = "") `
  630. _, err = o.Raw(sql).QueryRows(&list)
  631. return
  632. }
  633. // PublishReportById 发布报告
  634. func PublishReportById(reportId int, publishTime time.Time) (err error) {
  635. o := orm.NewOrmUsingDB("rddp")
  636. sql := `UPDATE report SET state = 2, publish_time = ?, pre_publish_time=null, pre_msg_send=0, modify_time = NOW() WHERE id = ? `
  637. _, err = o.Raw(sql, publishTime, reportId).Exec()
  638. return
  639. }
  640. // ResetReportById 重置报告状态
  641. func ResetReportById(reportId, state int) (err error) {
  642. o := orm.NewOrmUsingDB("rddp")
  643. sql := `UPDATE report SET state = ?, pre_publish_time = null, pre_msg_send = 0, modify_time = NOW() WHERE id = ?`
  644. _, err = o.Raw(sql, state, reportId).Exec()
  645. return
  646. }
  647. // GetCommentReportByReportId 查询有留言的报告列表
  648. func GetCommentReportByReportId(condition string, pars []interface{}, startSize, pageSize int) (list []*Report, err error) {
  649. o := orm.NewOrmUsingDB("rddp")
  650. sql := `SELECT
  651. id,
  652. create_time,
  653. title,
  654. classify_name_first,
  655. classify_id_first,
  656. classify_name_second,
  657. classify_id_second,
  658. state,
  659. IF
  660. ( publish_time, publish_time, create_time ) AS publish_time
  661. FROM
  662. report
  663. WHERE
  664. 1=1
  665. `
  666. if condition != "" {
  667. sql += condition
  668. }
  669. sql += ` ORDER BY publish_time DESC , title ASC LIMIT ?,?`
  670. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&list)
  671. return
  672. }
  673. // GetCommentReportByReportIdOrderBy 查询有留言的报告列表(指定排序)
  674. func GetCommentReportByReportIdOrderBy(condition string, pars []interface{}, startSize, pageSize int, orderBy string) (list []*Report, err error) {
  675. o := orm.NewOrmUsingDB("rddp")
  676. sql := `SELECT
  677. id,
  678. create_time,
  679. title,
  680. classify_name_first,
  681. classify_id_first,
  682. classify_name_second,
  683. classify_id_second,
  684. state,
  685. IF
  686. ( publish_time, publish_time, create_time ) AS publish_time
  687. FROM
  688. report
  689. WHERE
  690. 1=1
  691. `
  692. if condition != "" {
  693. sql += condition
  694. }
  695. if orderBy == `` {
  696. sql += ` ORDER BY publish_time DESC , title ASC `
  697. } else {
  698. sql += orderBy
  699. }
  700. sql += ` LIMIT ?,? `
  701. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&list)
  702. return
  703. }
  704. // GetCommentReportTotalByReportId 查询有留言的报告列表总数
  705. func GetCommentReportTotalByReportId(condition string, pars []interface{}) (total int64, err error) {
  706. o := orm.NewOrmUsingDB("rddp")
  707. sql := `SELECT count(*)
  708. FROM report WHERE 1=1`
  709. if condition != "" {
  710. sql += condition
  711. }
  712. err = o.Raw(sql, pars).QueryRow(&total)
  713. return
  714. }
  715. // 点赞相关的报告列表
  716. type LikeReportItem struct {
  717. ReportId int `description:"报告Id"`
  718. ReportChapterId int `description:"报告章节Id"`
  719. ClassifyIdFirst int `description:"一级分类id"`
  720. ClassifyNameFirst string `description:"一级分类名称"`
  721. ClassifyIdSecond int `description:"二级分类id"`
  722. ClassifyNameSecond string `description:"二级分类名称"`
  723. ReportChapterTypeId int `description:"章节类型"`
  724. ReportChapterTypeName string `description:"品种名称"`
  725. PublishTime time.Time `description:"发布时间" `
  726. Title string `description:"标题"`
  727. }
  728. // GetLikeReportByReportIdReportChapterId 获取有被点赞的报告列表
  729. func GetLikeReportByReportIdReportChapterId(reportIds string, chapterIds string, orderStr string, startSize, pageSize int) (list []*LikeReportItem, err error) {
  730. o := orm.NewOrmUsingDB("rddp")
  731. sql := `( SELECT
  732. id AS report_id,
  733. 0 AS report_chapter_id,
  734. classify_id_first,
  735. classify_id_second,
  736. classify_name_first,
  737. classify_name_second,
  738. 0 as report_chapter_type_id,
  739. "" as report_chapter_type_name,
  740. publish_time,
  741. title
  742. FROM
  743. report
  744. WHERE
  745. classify_name_first != "晨报"
  746. AND classify_name_first != "周报"
  747. AND id in (` + reportIds + `)
  748. )
  749. UNION
  750. ( SELECT
  751. report_id,
  752. report_chapter_id,
  753. classify_id_first,
  754. 0 as classify_id_second,
  755. classify_name_first,
  756. null as classify_name_second,
  757. type_id as report_chapter_type_id,
  758. type_name as report_chapter_type_name,
  759. publish_time,
  760. title
  761. FROM
  762. report_chapter
  763. WHERE
  764. report_chapter_id in (` + chapterIds + `)
  765. )`
  766. if orderStr != "" {
  767. sql += ` ORDER BY FIELD(CONCAT(report_id, "-",report_chapter_id),` + orderStr + `)`
  768. } else {
  769. sql += ` ORDER BY publish_time DESC, report_id Desc`
  770. }
  771. sql += ` LIMIT ?,?`
  772. _, err = o.Raw(sql, startSize, pageSize).QueryRows(&list)
  773. return
  774. }
  775. // GetLikeReportTotalByReportIdReportChapterId 获取有被点赞的报告列表总数
  776. func GetLikeReportTotalByReportIdReportChapterId(reportIds string, chapterIds string) (total int64, err error) {
  777. o := orm.NewOrmUsingDB("rddp")
  778. sql := `select count(*) from (( SELECT
  779. id AS report_id,
  780. 0 AS report_chapter_id,
  781. classify_id_first,
  782. classify_id_second,
  783. classify_name_first,
  784. classify_name_second,
  785. 0 as report_chapter_type_id,
  786. publish_time,
  787. title
  788. FROM
  789. report
  790. WHERE
  791. classify_name_first != "晨报"
  792. AND classify_name_first != "周报"
  793. AND id in (` + reportIds + `)
  794. )
  795. UNION
  796. ( SELECT
  797. report_id,
  798. report_chapter_id,
  799. classify_id_first,
  800. 0 as classify_id_second,
  801. classify_name_first,
  802. null as classify_name_second,
  803. type_id as report_chapter_type_id,
  804. publish_time,
  805. title
  806. FROM
  807. report_chapter
  808. WHERE
  809. report_chapter_id in (` + chapterIds + `)
  810. )) r`
  811. err = o.Raw(sql).QueryRow(&total)
  812. return
  813. }
  814. // GetPageReportList 分页获取报告列表
  815. func GetPageReportList(condition string, pars []interface{}, startSize, pageSize int) (total int, items []*ReportList, err error) {
  816. o := orm.NewOrmUsingDB("rddp")
  817. sql := `SELECT * FROM report WHERE 1=1 `
  818. sql += condition
  819. sql += ` ORDER BY modify_time DESC`
  820. totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  821. err = o.Raw(totalSql, pars).QueryRow(&total)
  822. if err != nil {
  823. return
  824. }
  825. sql += ` LIMIT ?,? `
  826. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  827. return
  828. }
  829. // SunCodeReq 获取太阳码请求体
  830. type SunCodeReq struct {
  831. CodePage string `json:"CodePage" description:"太阳码page"`
  832. CodeScene string `json:"CodeScene" description:"太阳码scene"`
  833. }
  834. // YbPcSuncode 活动海报表
  835. type YbPcSuncode struct {
  836. SuncodeID uint32 `orm:"column(suncode_id);pk" `
  837. Scene string `gorm:"column:scene;type:varchar(255);not null;default:0" json:"scene"` // 微信scene
  838. SceneMd5 string `gorm:"column:scene_md5;type:varchar(255);not null" json:"sceneMd5"`
  839. CodePage string `gorm:"column:code_page;type:varchar(255);not null;default:''" json:"codePage"` // 路径
  840. SuncodeUrl string `gorm:"column:suncode_url;type:varchar(255);not null;default:''" json:"suncodeUrl"` // 太阳码储存地址
  841. CreateTime time.Time `gorm:"column:create_time;type:timestamp;default:CURRENT_TIMESTAMP" json:"createTime"`
  842. }
  843. // GetYbPcSunCode 获取太阳码
  844. func GetYbPcSunCode(scene, page string) (item *YbPcSuncode, err error) {
  845. o := orm.NewOrmUsingDB("weekly")
  846. sql := `SELECT * FROM yb_pc_suncode WHERE scene = ? AND code_page = ? `
  847. err = o.Raw(sql, scene, page).QueryRow(&item)
  848. return
  849. }
  850. func AddYbPcSunCode(item *YbPcSuncode) (err error) {
  851. o := orm.NewOrmUsingDB("weekly")
  852. _, err = o.Insert(item)
  853. return
  854. }
  855. // YbSuncodePars 小程序太阳码scene参数
  856. type YbSuncodePars struct {
  857. ID uint32 `orm:"column(id);pk" `
  858. Scene string `gorm:"column:scene;type:varchar(255);not null;default:''" json:"scene"` // scene参数
  859. SceneKey string `gorm:"column:scene_key;type:varchar(32);not null;default:''" json:"scene_key"` // MD5值
  860. CreateTime time.Time `gorm:"column:create_time;type:datetime;default:CURRENT_TIMESTAMP" json:"createTime"`
  861. }
  862. func AddYbSuncodePars(item *YbSuncodePars) (err error) {
  863. o := orm.NewOrmUsingDB("weekly")
  864. _, err = o.Insert(item)
  865. return
  866. }
  867. // UpdateReportSecondClassifyNameByClassifyId 更新报告分类名称字段
  868. func UpdateReportSecondClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
  869. o := orm.NewOrmUsingDB("rddp")
  870. sql := " UPDATE report SET classify_name_second = ? WHERE classify_id_second = ? "
  871. _, err = o.Raw(sql, classifyName, classifyId).Exec()
  872. return
  873. }
  874. // UpdateReportFirstClassifyNameByClassifyId 更新报告分类一级名称字段
  875. func UpdateReportFirstClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
  876. o := orm.NewOrmUsingDB("rddp")
  877. sql := " UPDATE report SET classify_name_first = ? WHERE classify_id_first = ? "
  878. _, err = o.Raw(sql, classifyName, classifyId).Exec()
  879. return
  880. }
  881. // UpdateReportSecondClassifyFirstNameByClassifyId 更新报告二级分类的一级分类名称和id
  882. func UpdateReportSecondClassifyFirstNameByClassifyId(classifyId, newClassifyId int, classifyName string) (err error) {
  883. o := orm.NewOrmUsingDB("rddp")
  884. sql := " UPDATE report SET classify_name_first = ?, classify_id_first = ? WHERE classify_id_second = ? "
  885. _, err = o.Raw(sql, classifyName, newClassifyId, classifyId).Exec()
  886. return
  887. }
  888. // GetEmptyContentSubPPTReport 获取前两章为空的PPT报告
  889. func GetEmptyContentSubPPTReport() (list []*Report, err error) {
  890. sql := `SELECT
  891. r.id,
  892. r.content,
  893. r.content_sub
  894. FROM
  895. report AS r
  896. JOIN ppt_v2 AS p ON r.id = p.report_id
  897. WHERE
  898. p.report_id > 0 AND r.content_sub = ""`
  899. _, err = orm.NewOrmUsingDB("rddp").Raw(sql).QueryRows(&list)
  900. return
  901. }
  902. // ModifyReportAuthor 更改报告作者
  903. func ModifyReportAuthor(condition string, pars []interface{}, authorName string) (count int, err error) {
  904. //产品权限
  905. oRddp := orm.NewOrmUsingDB("rddp")
  906. sql := `UPDATE english_report set author = ? WHERE 1=1 `
  907. if condition != "" {
  908. sql += condition
  909. }
  910. err = oRddp.Raw(sql, authorName, pars).QueryRow(&count)
  911. return
  912. }
  913. func UpdateReportPublishTime(reportId int, videoNameDate string) (err error) {
  914. o := orm.NewOrmUsingDB("rddp")
  915. sql1 := ` UPDATE report SET publish_time = NOW() WHERE id = ? `
  916. _, err = o.Raw(sql1, reportId).Exec()
  917. if err != nil {
  918. return
  919. }
  920. //修改音频标题
  921. sql2 := ` UPDATE report SET video_name=CONCAT(SUBSTRING_INDEX(video_name,"(",1),"` + videoNameDate + `") WHERE id = ? and (video_name !="" and video_name is not null)`
  922. _, err = o.Raw(sql2, reportId).Exec()
  923. return
  924. }
  925. func UpdateReportChapterPublishTime(reportId int, videoNameDate string) (err error) {
  926. o := orm.NewOrmUsingDB("rddp")
  927. sql1 := ` UPDATE report_chapter SET publish_time = NOW() WHERE report_id = ? `
  928. _, err = o.Raw(sql1, reportId).Exec()
  929. if err != nil {
  930. return
  931. }
  932. //修改音频标题
  933. 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)`
  934. _, err = o.Raw(sql2, reportId).Exec()
  935. return
  936. }
  937. // MarkEditReport 标记编辑英文研报的请求数据
  938. type MarkEditReport struct {
  939. ReportId int `description:"研报id"`
  940. Status int `description:"标记状态,1:编辑中,2:编辑完成"`
  941. }
  942. type MarkReportResp struct {
  943. Status int `description:"状态:0:无人编辑, 1:当前有人在编辑"`
  944. Msg string `description:"提示信息"`
  945. Editor string `description:"编辑者姓名"`
  946. }
  947. type MarkReportItem struct {
  948. AdminId int `description:"编辑者ID"`
  949. Editor string `description:"编辑者姓名"`
  950. ReportClassifyNameFirst string
  951. }
  952. // GetReportByCondition 获取报告
  953. func GetReportByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string, isPage bool, startSize, pageSize int) (items []*Report, err error) {
  954. o := orm.NewOrmUsingDB("rddp")
  955. fields := `*`
  956. if len(fieldArr) > 0 {
  957. fields = strings.Join(fieldArr, ",")
  958. }
  959. sql := `SELECT ` + fields + ` FROM report WHERE 1=1 `
  960. sql += condition
  961. order := ` ORDER BY modify_time DESC`
  962. if orderRule != `` {
  963. order = orderRule
  964. }
  965. sql += order
  966. if isPage {
  967. sql += ` LIMIT ?,?`
  968. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  969. } else {
  970. _, err = o.Raw(sql, pars).QueryRows(&items)
  971. }
  972. return
  973. }
  974. // ModifyReportMsgIsSendV2 更新报告消息状态
  975. func ModifyReportMsgIsSendV2(reportId int) (err error) {
  976. o := orm.NewOrmUsingDB("rddp")
  977. sql := `UPDATE report SET msg_is_send = 1, ths_msg_is_send = 1, msg_send_time = NOW() WHERE id = ? LIMIT 1`
  978. _, err = o.Raw(sql, reportId).Exec()
  979. return
  980. }
  981. // SetPrePublishReportById 设置定时发布
  982. func SetPrePublishReportById(reportId int, prePublishTime string, preMsgSend int) (err error) {
  983. o := orm.NewOrmUsingDB("rddp")
  984. sql := `UPDATE report SET pre_publish_time=?, pre_msg_send=? WHERE id = ? and state = 1 `
  985. _, err = o.Raw(sql, prePublishTime, preMsgSend, reportId).Exec()
  986. return
  987. }
  988. // ReportSubmitApproveReq 提交审批请求体
  989. type ReportSubmitApproveReq struct {
  990. ReportId int `description:"报告ID"`
  991. }
  992. // ReportCancelApproveReq 撤回审批请求体
  993. type ReportCancelApproveReq struct {
  994. ReportId int `description:"报告ID"`
  995. }
  996. func (m *Report) GetItemById(id int) (item *Report, err error) {
  997. o := orm.NewOrmUsingDB("rddp")
  998. sql := `SELECT * FROM report WHERE id = ? LIMIT 1`
  999. err = o.Raw(sql, id).QueryRow(&item)
  1000. return
  1001. }
  1002. // GetReportStateCount 获取指定状态的报告数量
  1003. func GetReportStateCount(state int) (count int, err error) {
  1004. o := orm.NewOrmUsingDB("rddp")
  1005. sql := `SELECT COUNT(1) AS count FROM report WHERE state = ?`
  1006. err = o.Raw(sql, state).QueryRow(&count)
  1007. return
  1008. }