package com.cdzy.operations.enums; /** * @author attiya * @since 2025-10-15 */ public interface BikeStatus { /** * 未上架 */ int UN_LAUNCH = 0; /** * 已上架 */ int LAUNCH = 1; }