OrderLocationDTO.java
1.13 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
package com.sl.ms.oms.dto;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* 位置信息
*/
@ApiModel("位置信息")
@Data
public class OrderLocationDTO {
@ApiModelProperty(value = "主键", required = true)
private Long id;
/**
* 订单id
*/
@ApiModelProperty(value = "订单id", required = true)
private Long orderId;
/**
* 发送地址坐标
*/
@ApiModelProperty(value = "发送地址坐标", required = false)
private String sendLocation;
/**
* 收货地址坐标
*/
@ApiModelProperty(value = "收货地址坐标", required = false)
private String receiveLocation;
/**
* 发送起始网点
*/
@ApiModelProperty(value = "发送起始网点", required = false)
private String sendAgentId;
/**
* 接受的终止网点
*/
@ApiModelProperty(value = "接受的终止网点", required = false)
private String receiveAgentId;
/**
* 记录状态 0:无效,1有效
*/
@ApiModelProperty(value = "记录状态", required = false)
private String status;
}