1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.dsh.course.feignClient.communityWorldCup.Model;
|
| import lombok.Data;
|
| /**
| * @author zhibing.pu
| * @Date 2024/3/6 20:00
| */
| @Data
| public class ChangeScore {
| /**
| * 参赛数据id
| */
| private Long id;
| /**
| * 蓝方得分
| */
| private Integer blue;
| /**
| * 红方得分
| */
| private Integer red;
| }
|
|