|
@@ -5,7 +5,6 @@ import (
|
|
|
"fmt"
|
|
|
ybResponse "hongze/hongze_mobile_admin/models/response/yb"
|
|
|
"hongze/hongze_mobile_admin/models/tables/admin"
|
|
|
- "hongze/hongze_mobile_admin/models/tables/community_question"
|
|
|
"hongze/hongze_mobile_admin/models/tables/company"
|
|
|
"hongze/hongze_mobile_admin/models/tables/sys_role"
|
|
|
"hongze/hongze_mobile_admin/models/tables/sys_role_admin"
|
|
@@ -13,6 +12,7 @@ import (
|
|
|
"hongze/hongze_mobile_admin/models/tables/variety_classify"
|
|
|
"hongze/hongze_mobile_admin/models/tables/variety_tag"
|
|
|
"hongze/hongze_mobile_admin/models/tables/wx_user"
|
|
|
+ "hongze/hongze_mobile_admin/models/tables/yb_community_question"
|
|
|
"hongze/hongze_mobile_admin/services"
|
|
|
"hongze/hongze_mobile_admin/services/alarm_msg"
|
|
|
"hongze/hongze_mobile_admin/utils"
|
|
@@ -24,7 +24,7 @@ import (
|
|
|
// GetQuestionList 问题列表
|
|
|
func GetQuestionList(condition string, pars []interface{}, startSize, pageSize int) (total int, resp *ybResponse.CommunityQuestionListResp, err error) {
|
|
|
resp = new(ybResponse.CommunityQuestionListResp)
|
|
|
- total, list, e := community_question.GetCommunityQuestionList(condition, pars, startSize, pageSize)
|
|
|
+ total, list, e := yb_community_question.GetCommunityQuestionList(condition, pars, startSize, pageSize)
|
|
|
if e != nil {
|
|
|
err = errors.New("获取问题列表失败 Err:" + e.Error())
|
|
|
return
|
|
@@ -94,7 +94,7 @@ func GetQuestionList(condition string, pars []interface{}, startSize, pageSize i
|
|
|
respList = append(respList, item)
|
|
|
}
|
|
|
// 数量统计
|
|
|
- //countList, e := community_question.GetCommunityQuestionCount()
|
|
|
+ //countList, e := yb_community_question.GetCommunityQuestionCount()
|
|
|
//if e != nil {
|
|
|
// err = errors.New("获取问题数量统计失败 Err:" + e.Error())
|
|
|
// return
|
|
@@ -122,7 +122,7 @@ func GetQuestionList(condition string, pars []interface{}, startSize, pageSize i
|
|
|
|
|
|
// GetQuestionCompanyUser 获取提问者详情
|
|
|
func GetQuestionCompanyUser(questionId int) (ret *ybResponse.QuestionCompanyUser, err error) {
|
|
|
- questionInfo, e := community_question.GetQuestionById(questionId)
|
|
|
+ questionInfo, e := yb_community_question.GetQuestionById(questionId)
|
|
|
if e != nil {
|
|
|
err = errors.New("提问信息有误 Err:" + e.Error())
|
|
|
return
|
|
@@ -154,7 +154,7 @@ func GetQuestionCompanyUser(questionId int) (ret *ybResponse.QuestionCompanyUser
|
|
|
func DistributeQuestion(questionId, adminId, researchGroupFirstId, researchGroupSecondId, distributeId int) (errMsg string, err error) {
|
|
|
errMsg = "操作成功"
|
|
|
// 校验提问信息
|
|
|
- item, e := community_question.GetQuestionById(questionId)
|
|
|
+ item, e := yb_community_question.GetQuestionById(questionId)
|
|
|
if e != nil {
|
|
|
errMsg = "分配失败, 提问信息有误"
|
|
|
err = errors.New("提问信息有误 Err:" + e.Error())
|
|
@@ -267,11 +267,11 @@ func DistributeQuestion(questionId, adminId, researchGroupFirstId, researchGroup
|
|
|
|
|
|
// SoftDeleteQuestion 删除问题
|
|
|
func SoftDeleteQuestion(questionId int) (err error) {
|
|
|
- if _, e := community_question.GetQuestionById(questionId); e != nil {
|
|
|
+ if _, e := yb_community_question.GetQuestionById(questionId); e != nil {
|
|
|
err = errors.New("提问信息有误 Err:" + e.Error())
|
|
|
return
|
|
|
}
|
|
|
- if e := community_question.DeleteQuestion(questionId); e != nil {
|
|
|
+ if e := yb_community_question.DeleteQuestion(questionId); e != nil {
|
|
|
err = errors.New("删除提问失败 Err:" + e.Error())
|
|
|
}
|
|
|
return
|
|
@@ -285,7 +285,7 @@ func SendMsgToReplier(questionId int) (errMsg string, err error) {
|
|
|
}
|
|
|
}()
|
|
|
errMsg = "推送成功"
|
|
|
- item, e := community_question.GetQuestionById(questionId)
|
|
|
+ item, e := yb_community_question.GetQuestionById(questionId)
|
|
|
if e != nil {
|
|
|
errMsg = "问答信息有误"
|
|
|
err = errors.New("提问信息有误, Err:" + e.Error())
|
|
@@ -338,7 +338,7 @@ func SendMsgToReplier(questionId int) (errMsg string, err error) {
|
|
|
|
|
|
// EditQuestion 编辑问题
|
|
|
func EditQuestion(questionId int, content string) (errMsg string, err error) {
|
|
|
- item, e := community_question.GetQuestionById(questionId)
|
|
|
+ item, e := yb_community_question.GetQuestionById(questionId)
|
|
|
if e != nil {
|
|
|
errMsg = "提问信息有误"
|
|
|
err = errors.New("提问信息有误 Err:" + e.Error())
|