feat:first commit

This commit is contained in:
Zhujx
2025-06-06 16:01:37 +08:00
commit ec437bb088
55 changed files with 2513 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
package com.xiang.entity.response;
import lombok.Data;
import java.util.List;
/**
* @Author: xiang
* @Date: 2025-05-08 14:55
*/
@Data
public class GLaDOSResponse<T> {
private Long code;
private Integer points;
private String message;
private List<T> list;
}