rt-graphic-component/components/packages/Station/BeiJingStation.js
2024-01-04 10:44:03 +08:00

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 };