添加航班预计时间处理
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package com.gzzn.omms.msgexchangeapi.msghandler.flop;
|
||||
|
||||
import com.gzzn.omms.msgexchangeapi.entity.msg.FLOP;
|
||||
import com.gzzn.omms.msgexchangeapi.entity.msg.SCHD;
|
||||
|
||||
/**
|
||||
* 航班预计时间处理
|
||||
* @author zhouxiunai
|
||||
*
|
||||
*/
|
||||
public class ESTTHandler extends FlopBaseHandler {
|
||||
@Override
|
||||
protected SCHD.FLTR updateFltr(FLOP flop,SCHD.FLTR fltr)
|
||||
{
|
||||
fltr.setESTT(flop.getESTT());
|
||||
|
||||
return fltr;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user