Files
Nexus-api/src/main/java/com/dota/nexus/entity/Goal.java
2025-10-08 09:50:13 +08:00

15 lines
244 B
Java

package com.dota.nexus.entity;
import lombok.Data;
import lombok.EqualsAndHashCode;
@EqualsAndHashCode(callSuper = true)
@Data
public class Goal extends Entity {
private String name;
private String tag;
private String detail;
}