罗明文
2024-06-16 9673bcd57c6100ad9fdfbee728ef078104511fc1
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.dollearn.student.network.entity
 
data class ReqAddAddress(
    val address: String,
    val city: String,
    val cityCode: String,
    val isDefault: Int, //是否为默认地址0否1是
    val province: String,
    val provinceCode: String,
    val recipient: String,
    val recipientPhone: String,
    val id: String?
)