[DIVA] Fix ranking being reversed

This commit is contained in:
samnyan
2020-01-21 20:52:04 +08:00
parent 5fa287ffb6
commit 0f37346fdc
5 changed files with 82 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
package icu.samnyan.aqua.api.model.resp.sega.diva;
import lombok.AllArgsConstructor;
import lombok.Data;
/**
* @author sam_nya (samnya@outlook.com)
*/
@Data
@AllArgsConstructor
public class PvRankRecord {
private long id;
private String playerName;
private int score;
private int attain;
}