You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
323 B

package com.gary.exercise.dto;
import lombok.Data;
/**
*用来描述比赛事件 统一返回格式
*/
@Data
public class GameEvent {
private String classMessage;//节数信息
LeftTime time;//剩余时间
ActionDto lakerActionDto;//湖人队动作
ActionDto wolvesActionDto;//森林狼队动作
}