@Transactional(readOnly = false)
 public Object getNote(String noteId) {
   MessageNote messageNote = messageNoteMapper.selectByPrimaryKey(noteId);
   return messageNote;
 }