///0:移动中 1:停留 2:异常 abstract class TrackStatus { static const int moving = 0; static const int stay = 1; static const int error = 2; } enum TrackExpandType { error, stay, stayNow, errorNow }