Administrator
2023-08-21 fdbb8d1d091524727456bf63d86b9612d39f822d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.scheduling.domian;
 
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;
}