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