puzhibing
2024-02-22 f6585d78307370f108b4a691e5ebd225fedbeda8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.dsh.communityWorldCup.model;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @Date 2024/2/18 17:26
 */
@Data
@ApiModel
public class WorldCupListCoach {
    @ApiModelProperty(value = "搜索内容", required = false, dataType = "String")
    private String content;
    @ApiModelProperty(value = "经度", required = true, dataType = "String")
    private String lon;
    @ApiModelProperty(value = "纬度", required = true, dataType = "String")
    private String lat;
    @ApiModelProperty(value = "赛点id", required = false, dataType = "int")
    private Integer storeId;
}