import { Moment } from "moment";

export class Config {
    public static parentUrl: string = "http://112.124.40.88:8890/product/picture";
}

export class MicrowaveRadiationConfig {
    private static url: string = Config.parentUrl + "/weibo";

    public static getUrl(station: string, type: string, time: Moment): string {
        return this.url+ '/' + station + '/' + type + '/' + time.format("YYYY/YYYYMM/YYYYMMDD/YYYYMMDDHHmmss.png");
    }
}