Initial Commit

This commit is contained in:
Flare Microsystems
2024-03-07 14:15:34 -08:00
commit 37c506249a
12 changed files with 669 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package com.flaremicro.visualforecast.datamart;
public class TownInfo {
public final String code;
public final String townName;
public final String province;
public final float northLat;
public final float westLong;
public TownInfo(String code, String townName, String province, float northLat, float westLong) {
this.code = code;
this.townName = townName;
this.province = province;
this.northLat = northLat;
this.westLong = westLong;
}
}