21 lines
299 B
Java
21 lines
299 B
Java
package com.hivekion.statistic.bean;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* [类的简要说明]
|
|
* <p>
|
|
* [详细描述,可选]
|
|
* <p>
|
|
*
|
|
* @author LiDongYU
|
|
* @since 2025/7/22
|
|
*/
|
|
@Data
|
|
public class PersonInfo {
|
|
private int total;
|
|
private int current;
|
|
private int death;
|
|
private int injured;
|
|
}
|