calendar_researcher_question.go 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. package roadshow
  2. import (
  3. "context"
  4. "github.com/beego/beego/v2/client/orm"
  5. "time"
  6. )
  7. type RsCalendarResearcherQuestion struct {
  8. RsCalendarResearcherQuestionId int `orm:"column(rs_calendar_researcher_question_id);pk"`
  9. RsCalendarId int `description:"路演日历id"`
  10. RsCalendarResearcherId int `description:"路演研究员记录ID"`
  11. QuestionContent string `description:"提问内容"`
  12. ReplyContent string `description:"回复内容"`
  13. CreateTime time.Time `description:"创建时间"`
  14. ModifyTime time.Time `description:"更新时间"`
  15. }
  16. type RoadShowQuestionSaveReq struct {
  17. RsCalendarId int `description:"路演ID"`
  18. RsCalendarResearcherId int `description:"路演研究员记录ID"`
  19. CompanyIndustry string `description:"客户行业"`
  20. CompanyClassify string `description:"客户分类"`
  21. QuestionList []*RsCalendarResearcherQuestionSaveReq `description:"问答列表"`
  22. }
  23. type RsCalendarResearcherQuestionSaveReq struct {
  24. QuestionContent string `description:"提问内容"`
  25. ReplyContent string `description:"回复内容"`
  26. }
  27. func RoadShowQuestionSave(req *RoadShowQuestionSaveReq) (err error) {
  28. o := orm.NewOrm()
  29. tx, err := o.BeginWithCtx(context.Background())
  30. if err != nil {
  31. return err
  32. }
  33. defer func() {
  34. if err != nil {
  35. tx.Rollback()
  36. } else {
  37. tx.Commit()
  38. }
  39. }()
  40. sql := ` UPDATE rs_calendar_researcher SET company_industry = ?,company_classify = ?,question_status=1 WHERE rs_calendar_researcher_id = ? `
  41. _, err = tx.Raw(sql, req.CompanyIndustry, req.CompanyClassify, req.RsCalendarResearcherId).Exec()
  42. if err != nil {
  43. return err
  44. }
  45. list := make([]*RsCalendarResearcherQuestion, 0)
  46. for _, v := range req.QuestionList {
  47. item := new(RsCalendarResearcherQuestion)
  48. item.RsCalendarId = req.RsCalendarId
  49. item.RsCalendarResearcherId = req.RsCalendarResearcherId
  50. item.QuestionContent = v.QuestionContent
  51. item.ReplyContent = v.ReplyContent
  52. item.ModifyTime = time.Now()
  53. item.CreateTime = time.Now()
  54. list = append(list, item)
  55. }
  56. _, err = tx.InsertMulti(len(list), &list)
  57. return err
  58. }
  59. func GetRoadShowQuestionList(rsCalendarResearcherId int) (item []*RsCalendarResearcherQuestion, err error) {
  60. o := orm.NewOrm()
  61. sql := `SELECT * FROM rs_calendar_researcher_question WHERE rs_calendar_researcher_id = ? ORDER BY create_time DESC `
  62. _, err = o.Raw(sql, rsCalendarResearcherId).QueryRows(&item)
  63. return
  64. }