puzhibing
2024-03-06 f6d50410b2674c2564be93b3887fff60e5769bd1
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;
}