mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-28 19:45:18 +00:00
24 lines
417 B
Java
24 lines
417 B
Java
|
package emu.grasscutter.database;
|
||
|
|
||
|
import dev.morphia.annotations.Entity;
|
||
|
import dev.morphia.annotations.Id;
|
||
|
|
||
|
@Entity(value = "counters", noClassnameStored = true)
|
||
|
public class DatabaseCounter {
|
||
|
@Id
|
||
|
private String id;
|
||
|
private int count;
|
||
|
|
||
|
public DatabaseCounter() {}
|
||
|
|
||
|
public DatabaseCounter(String id) {
|
||
|
this.id = id;
|
||
|
this.count = 10000;
|
||
|
}
|
||
|
|
||
|
public int getNextId() {
|
||
|
int id = ++count;
|
||
|
return id;
|
||
|
}
|
||
|
}
|