rk
12 小时以前 611d7b93462deeb994dc89ab7c5b39bbcf5f2596
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
package com.doumee.dao.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
/**
 * 门店校验操作半径请求
 * @author rk
 * @date 2026/05/08
 */
@Data
@ApiModel("门店校验操作半径请求")
public class ShopCheckRadiusDTO {
 
    @NotNull(message = "订单主键不能为空")
    @ApiModelProperty(value = "订单主键", example = "1", required = true)
    private Integer orderId;
 
    @NotNull(message = "当前经度不能为空")
    @ApiModelProperty(value = "当前经度", example = "116.404", required = true)
    private Double lng;
 
    @NotNull(message = "当前纬度不能为空")
    @ApiModelProperty(value = "当前纬度", example = "39.915", required = true)
    private Double lat;
 
}