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.
25 lines
746 B
25 lines
746 B
3 years ago
|
using AX.Network.Protocols;
|
||
|
using AX.MessageSystem;
|
||
|
using System.Collections.Generic;
|
||
|
using AX.NetworkSystem;
|
||
|
|
||
|
//public struct ExanResultPageReplyPair
|
||
|
//{
|
||
|
// public int currentPage;
|
||
|
// public int numberEachPage;
|
||
|
// public int pageCount;
|
||
|
// public List<ExamRecordInfo> examRecordList;
|
||
|
//}
|
||
|
public class GET_MARKING_EXAMINATION_INFOS_REPLY : NetworkMessageBehaviour
|
||
|
{
|
||
|
protected override void Execute(BinaryMessage message)
|
||
|
{
|
||
|
//获取到服务端的返回数据,发送给UI
|
||
|
//message待解析成自己的数据类型,然后发送
|
||
|
var data = message.Body.Deserialize<PagingReplyInfo<ExaminationInfo>>();
|
||
|
|
||
|
MessageDispatcher.SendMessage("GET_MARKING_EXAMINATION_INFOS_REFRESH", data);
|
||
|
}
|
||
|
|
||
|
}
|