...
|
...
|
@@ -55,22 +55,32 @@ func (l *MiniSystemLogic) ArticleDefined(conn transaction.Conn, companyId, at in |
|
|
return l.createMessage(conn, companyId, at, domain.MsgTypeNormal, "帖子已定性", fmt.Sprintf("您的帖子[%s]已被定性,如有疑问,请联系运营管理员了解详情。", item))
|
|
|
}
|
|
|
|
|
|
// AbnormalArticleUnapproved 文章未审核通过
|
|
|
//// ArticleAuth 文章权限变更
|
|
|
//func (l *MiniSystemLogic) ArticleAuth(conn transaction.Conn, companyId, at int64, item string) (err error) {
|
|
|
// return l.createMessage(conn, companyId, at, domain.MsgTypeAbnormal, "权限变更", fmt.Sprintf("您的帖子[%s]可见权限已添加,如有疑问,请联系运营管理员了解详情。", item))
|
|
|
//}
|
|
|
|
|
|
// AbnormalArticleUnapproved 异常通知-文章未审核通过
|
|
|
func (l *MiniSystemLogic) AbnormalArticleUnapproved(conn transaction.Conn, companyId, at int64, item string) (err error) {
|
|
|
return l.createMessage(conn, companyId, at, domain.MsgTypeAbnormal, "发帖未通过审核", fmt.Sprintf("您的帖子[%s]因违反运营规则未通过审核,如有疑问,请联系运营管理员了解详情。", item))
|
|
|
}
|
|
|
|
|
|
// AbnormalArticleHidden 文章被隐藏
|
|
|
// AbnormalArticleHidden 异常通知-文章被隐藏
|
|
|
func (l *MiniSystemLogic) AbnormalArticleHidden(conn transaction.Conn, companyId, at int64, item string) (err error) {
|
|
|
return l.createMessage(conn, companyId, at, domain.MsgTypeAbnormal, "帖子被隐藏", fmt.Sprintf("您的帖子[%s]已被隐藏,如有疑问,请联系运营管理员了解详情。", item))
|
|
|
}
|
|
|
|
|
|
// AbnormalCommentUnapproved 评论未审核通过
|
|
|
//// AbnormalArticleAuth 异常通知-文章权限变更
|
|
|
//func (l *MiniSystemLogic) AbnormalArticleAuth(conn transaction.Conn, companyId, at int64, item string) (err error) {
|
|
|
// return l.createMessage(conn, companyId, at, domain.MsgTypeAbnormal, "权限变更", fmt.Sprintf("您的帖子[%s]可见权限已被移除,如有疑问,请联系运营管理员了解详情。", item))
|
|
|
//}
|
|
|
|
|
|
// AbnormalCommentUnapproved 异常通知-评论未审核通过
|
|
|
func (l *MiniSystemLogic) AbnormalCommentUnapproved(conn transaction.Conn, companyId, at int64, item string) (err error) {
|
|
|
return l.createMessage(conn, companyId, at, domain.MsgTypeAbnormal, "评论未通过审核", fmt.Sprintf("您的评论[%s]因违反运营规则未通过审核,如有疑问,请联系运营管理员了解详情。", item))
|
|
|
}
|
|
|
|
|
|
// AbnormalCommentHidden 评论被隐藏
|
|
|
// AbnormalCommentHidden 异常通知-评论被隐藏
|
|
|
func (l *MiniSystemLogic) AbnormalCommentHidden(conn transaction.Conn, companyId, at int64, item string) (err error) {
|
|
|
return l.createMessage(conn, companyId, at, domain.MsgTypeAbnormal, "评论被隐藏", fmt.Sprintf("您的评论[%s]已被隐藏,如有疑问,请联系运营管理员了解详情。", item))
|
|
|
}
|
...
|
...
|
|