xuhy
1 天以前 b248e201845e9704cf01f7ac723a64e2570039f4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.system.dto;
 
import com.ruoyi.system.model.TCleaner;
import com.ruoyi.system.model.TTaskDetail;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "上传任务DTO")
public class TaskDetailDto extends TTaskDetail {
 
    @ApiModelProperty(value = "经度")
    private String lon;
    @ApiModelProperty(value = "纬度")
    private String lat;
 
 
}