12 lines
163 B
Java
12 lines
163 B
Java
|
|
package com.cdzy.ebikeoperate.enums;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author attiya
|
||
|
|
* @since 2025-04-09
|
||
|
|
*/
|
||
|
|
|
||
|
|
public interface EbikeRegionInOperation {
|
||
|
|
int IN = 1;
|
||
|
|
int OUT = 0;
|
||
|
|
}
|