hjl
2024-07-16 ec6d43aa07ee0e8faf34498057ebcfbb446aa015
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
package com.ruoyi.admin.entity;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
/**
 * <p>
 * 师傅路线经纬度信息
 * </p>
 *
 * @author hjl
 * @since 2024-07-08
 */
@Getter
@Setter
@ApiModel(value = "ServeCoordinate对象", description = "师傅路线经纬度信息")
public class ServeCoordinate {
 
    @ApiModelProperty("师傅id")
    private Integer workerId;
 
    @ApiModelProperty("订单id")
    private String orderId;
 
    @ApiModelProperty("路线经纬度")
    private String coordinate;
 
    @ApiModelProperty("经度")
    private Double longitude;
 
    @ApiModelProperty("纬度")
    private Double latitude;
 
}