17 lines
350 B
JavaScript
17 lines
350 B
JavaScript
import { JlStation } from './JlStation.js';
|
|
import { CategoryType } from '../Platform/PlatformConfig.js';
|
|
|
|
class BeiJingStation extends JlStation {
|
|
constructor() {
|
|
super(CategoryType.BeiJing);
|
|
}
|
|
get states() {
|
|
return this.getStates();
|
|
}
|
|
doRepaint() {
|
|
super.doRepaint();
|
|
}
|
|
}
|
|
|
|
export { BeiJingStation };
|