mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-09 07:17:26 +08:00
[general] Update .gitignore and add missing file
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -33,4 +33,4 @@ build/
|
|||||||
### Dev env ###
|
### Dev env ###
|
||||||
application.properties
|
application.properties
|
||||||
aqua.jar
|
aqua.jar
|
||||||
data/
|
/data/
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
package icu.samnyan.aqua.sega.ongeki.model.response.data;
|
||||||
|
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author samnyan (privateamusement@protonmail.com)
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class GameEventItem {
|
||||||
|
private long id;
|
||||||
|
private int type;
|
||||||
|
private String startDate;
|
||||||
|
private String endDate;
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
package icu.samnyan.aqua.sega.ongeki.model.response.data;
|
||||||
|
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author samnyan (privateamusement@protonmail.com)
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class GameIdListItem {
|
||||||
|
private int id;
|
||||||
|
private int type;
|
||||||
|
}
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
package icu.samnyan.aqua.sega.ongeki.model.response.data;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author samnyan (privateamusement@protonmail.com)
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class GameSetting {
|
||||||
|
private String dataVersion;
|
||||||
|
@JsonProperty("isMaintenance")
|
||||||
|
private boolean isMaintenance;
|
||||||
|
private int requestInterval;
|
||||||
|
private LocalDateTime rebootStartTime;
|
||||||
|
private LocalDateTime rebootEndTime;
|
||||||
|
@JsonProperty("isBackgroundDistribute")
|
||||||
|
private boolean isBackgroundDistribute;
|
||||||
|
private int maxCountCharacter;
|
||||||
|
private int maxCountItem;
|
||||||
|
private int maxCountMusic;
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
package icu.samnyan.aqua.sega.ongeki.model.response.data;
|
||||||
|
|
||||||
|
import icu.samnyan.aqua.sega.ongeki.model.userdata.UserMusicDetail;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author samnyan (privateamusement@protonmail.com)
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class UserMusicListItem {
|
||||||
|
private int length;
|
||||||
|
private List<UserMusicDetail> userMusicDetailList;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user