mybatis-plus

This commit is contained in:
jsh
2025-10-08 09:50:13 +08:00
parent fe06b792b3
commit a5e629cbbd
11 changed files with 131 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
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;
}