fix
Hentua
2023-08-31 cbb1c95b0ef07d3d5f6c6cb622caf17549fee0c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
@Data
@ApiModel(value = "ApiLeaderTitleDto", description = "参数接收类")
public class ApiLeaderTitleDto {
 
    @ApiModelProperty(value = "团长特征码", example = "1")
    private String uniqueCode;
 
    @ApiModelProperty(value = "经度", example = "123")
    private Double longitude;
 
    @ApiModelProperty(value = "纬度", example = "123")
    private Double latitude;
 
}