track_status.dart 216 B

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