1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.dollearn.student.network.entity
|
| import android.os.Parcelable
| import kotlinx.android.parcel.Parcelize
|
| @Parcelize
| data class Province(
| val children: List<City>?,
| val code: String,
| val id: Int,
| val name: String,
| val parentId: Int
| ):Parcelable
|
| @Parcelize
| data class City(
| val code: String,
| val id: Int,
| val name: String,
| val parentId: Int
| ):Parcelable
|
|