添加航班预计时间处理

This commit is contained in:
zhouxiunai
2018-12-11 09:28:20 +08:00
parent e17f615ede
commit 894288ec0a
@@ -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;
}
}