func (m *MgoQuestionStore) UpdateContent(q *model.Question) error { q.SetUpdated() return m.c.UpdateId(q.ID, q.GetUpdateContentMap()) }
func (m *MgoQuestionStore) Create(q *model.Question) error { q.SetNew() return m.c.Insert(q) }