Initial commit
This commit is contained in:
26
sources/com/aigestudio/wheelpicker/model/City.java
Normal file
26
sources/com/aigestudio/wheelpicker/model/City.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package com.aigestudio.wheelpicker.model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class City implements Serializable {
|
||||
public List<String> area;
|
||||
public String name;
|
||||
|
||||
public List<String> getArea() {
|
||||
return this.area;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setArea(List<String> list) {
|
||||
this.area = list;
|
||||
}
|
||||
|
||||
public void setName(String str) {
|
||||
this.name = str;
|
||||
}
|
||||
}
|
26
sources/com/aigestudio/wheelpicker/model/Province.java
Normal file
26
sources/com/aigestudio/wheelpicker/model/Province.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package com.aigestudio.wheelpicker.model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class Province implements Serializable {
|
||||
public List<City> city;
|
||||
public String name;
|
||||
|
||||
public List<City> getCity() {
|
||||
return this.city;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setCity(List<City> list) {
|
||||
this.city = list;
|
||||
}
|
||||
|
||||
public void setName(String str) {
|
||||
this.name = str;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user