...
|
...
|
@@ -167,9 +167,12 @@ public class MessageNoteController { |
|
|
* 填充名称
|
|
|
*
|
|
|
* @param messageNote {@link MessageNote}
|
|
|
* @return
|
|
|
* @return {@link MessageNote}
|
|
|
*/
|
|
|
public MessageNote note_fillName(MessageNote messageNote) {
|
|
|
// 填充,发送内容(编辑 or 新增)
|
|
|
messageNote.setSendContent(messageNote.getAlias_sendContent().getBytes());
|
|
|
|
|
|
// 填充,服务器名称
|
|
|
BusServer busServer = busServerService.selectByPrimaryKey(messageNote.getServerId());
|
|
|
messageNote.setServerName(busServer.getServerName());
|
...
|
...
|
|