89 lines
2.0 KiB
TypeScript
89 lines
2.0 KiB
TypeScript
export class AlertMessageHandle{
|
|
public alertMessage = {
|
|
'FLOP-CNCL':'',
|
|
'FLOP-FRET':'',
|
|
'FLOP-FDIV':'',
|
|
'FLOP-FDEL':'',
|
|
'FLOP-DELY':'',
|
|
'FLOP-ACTT':'',
|
|
'FLOP-GTDT':'',
|
|
'FLOP-PSDT':'',
|
|
'FLOP-ESTT':'',
|
|
'FLOP-PADT':'',
|
|
'FLOP-CKDT':'',
|
|
'FLOP-BOTM':'',
|
|
'FLOP-CLDT':'',
|
|
'FLOP-ROUT':'',
|
|
'FLOP-VIPP':'',
|
|
'FLOP-HNAG':'',
|
|
'FLOP-FLBG':'',
|
|
'FLOP-RENO':'',
|
|
'FLOP-ABTM':'',
|
|
'FLOP-CHOT':'',
|
|
'FLOP-TRML':'',
|
|
}
|
|
|
|
public flopCncl(){
|
|
return '航班取消事件'
|
|
}
|
|
public flopFret(){
|
|
return '航班返航事件'
|
|
}
|
|
public flopFdiv(){
|
|
return '航班备降事件'
|
|
}
|
|
public flopFdel(){
|
|
return '航班删除事件'
|
|
}
|
|
public flopDely(){
|
|
return '航班延误事件'
|
|
}
|
|
public flopActt(){
|
|
return '航班实际时间事件'
|
|
}
|
|
public flopGtdt(){
|
|
return '航班登机门事件'
|
|
}
|
|
public flopPsdt(){
|
|
return '航班机位变更事件'
|
|
}
|
|
public flopEstt(){
|
|
return '航班预计时间事件'
|
|
}
|
|
public flopPadt(){
|
|
return '航班站起飞时间事件'
|
|
}
|
|
public flopCkdt(){
|
|
return '航班值机柜台事件'
|
|
}
|
|
public flopBotm(){
|
|
return '航班登机开始事件'
|
|
}
|
|
public flopCldt(){
|
|
return '航班行李转盘事件'
|
|
}
|
|
public flopRout(){
|
|
return '航班航线事件'
|
|
}
|
|
public flopVipp(){
|
|
return '航班VIP事件'
|
|
}
|
|
public flopHnag(){
|
|
return '航班代理事件'
|
|
}
|
|
public flopFlbg(){
|
|
return '航班首末件行李到达事件'
|
|
}
|
|
public flopReno(){
|
|
return '航班飞机号变更事件'
|
|
}
|
|
public flopAbtm(){
|
|
return '航班靠桥撤桥事件'
|
|
}
|
|
public flopChdt(){
|
|
return '航班上下轮档事件'
|
|
}
|
|
public flopTrml(){
|
|
return '航班航站楼事件'
|
|
}
|
|
} |