45 lines
518 B
Java
45 lines
518 B
Java
|
|
package com.cdzy.operations.enums;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @author attiya
|
|||
|
|
* @since 2025-10-15
|
|||
|
|
*/
|
|||
|
|
public interface BikeUsageStatus {
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 初始状态:绑定完成
|
|||
|
|
*/
|
|||
|
|
int BIND = 0;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 待单
|
|||
|
|
*/
|
|||
|
|
int WAIT = 1;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 骑行
|
|||
|
|
*/
|
|||
|
|
int CYCLING = 2;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 待维修
|
|||
|
|
*/
|
|||
|
|
int REPAIR = 3;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 调度中
|
|||
|
|
*/
|
|||
|
|
int DISPATCH = 4;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 维修中
|
|||
|
|
*/
|
|||
|
|
int UNDER_REPAIR = 5;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 待投放
|
|||
|
|
*/
|
|||
|
|
int DEPLOYED = 6;
|
|||
|
|
}
|