Administrator
2023-08-18 b2ed35cae393672deb3b19a2720dc781b48f7b47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.scheduling.domian;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @Description:
 * @ClassName: RequestParam
 * @Author: 刘苏义
 * @Date: 2023年08月17日13:16:25
 * @Version: 1.0
 **/
@Data
public class SchedulingParam {
 
    Integer sealingRadius;
    Integer monitoringRadius;
    Double longitude;
    Double latitude;
}