swb
2024-07-04 7438064a85a63d46e210ce37e63c4ca823d52f63
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.moral.api.entity;
 
import lombok.Data;
 
/**
 * Description //todo
 *
 * @author swb
 * @ClassName DustldDTO
 * @date 2024.06.25 14:25
 */
@Data
public class DustldDTO {
 
 
    private String name;
    //纬度
    private String flyLat;
    //经度
    private String flyLon;
 
    //尘负荷
    private Double  data;
}