天津23维预案
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
455 B

using AX.Network.Protocols;
using AX.MessageSystem;
using AX.NetworkSystem;
using System.Collections.Generic;
public class GET_EXAMINATION_INFOS_REPLY : NetworkMessageBehaviour
{
protected override void Execute(BinaryMessage message)
{
//解析服务端数据
//ToDo...
var data = message.Body.Deserialize<List<ExaminationInfo>>();
MessageDispatcher.SendMessage("GET_EXAMINATION_INFOS_REFRESH", data);
}
}