xiaoyong931011
2021-06-30 b9857b9a19ae585d342b74fca6ee26277019e65c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.xzx.gc.order.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @program: 1.4.1
 * @description:
 * @author: zan.zhong
 * @create: 2020-02-10 13:03
 **/
 
@Data
public class OrderUpdateAddressDto {
    @ApiModelProperty("地址")
    private String address;
 
    @ApiModelProperty("地址所属区域")
    private String addressArea;
 
    @ApiModelProperty("经度")
    private String longitude;
 
    @ApiModelProperty("纬度")
    private String latitude;
 
    @ApiModelProperty("订单id")
    private String orderId;
 
    @ApiModelProperty("地址Id")
    private Long addressId;
 
    @ApiModelProperty(hidden = true)
    private String townId;
}