1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| package com.dsh.course.feignClient.communityWorldCup.Model;
|
| import lombok.Data;
|
| /**
| * @author zhibing.pu
| * @Date 2024/3/6 16:17
| */
| @Data
| public class WorldCupRecords {
| /**
| * 省名称
| */
| private String province;
| /**
| * 市名称
| */
| private String city;
| /**
| * 页码
| */
| private Integer offset;
| /**
| * 页条数
| */
| private Integer limit;
|
| }
|
|