///0:移动中 1:停留 2:异常 abstract class TrackStatus { static const int moving = 0; static const int stay = 1; static const int abnormal = 2; }