mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-26 07:15:43 +00:00
Format code [skip actions]
This commit is contained in:
parent
2b13ea2a82
commit
d5905d6ad8
@ -8,17 +8,23 @@ import lombok.Data;
|
|||||||
import lombok.EqualsAndHashCode;
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
@ResourceType(name = "MonsterSpecialNameExcelConfigData.json", loadPriority = LoadPriority.HIGH)
|
@ResourceType(name = "MonsterSpecialNameExcelConfigData.json", loadPriority = LoadPriority.HIGH)
|
||||||
@EqualsAndHashCode(callSuper=false)
|
@EqualsAndHashCode(callSuper = false)
|
||||||
@Data
|
@Data
|
||||||
public class MonsterSpecialNameData extends GameResource {
|
public class MonsterSpecialNameData extends GameResource {
|
||||||
@SerializedName(value = "specialNameId", alternate={"specialNameID"})
|
@SerializedName(
|
||||||
|
value = "specialNameId",
|
||||||
|
alternate = {"specialNameID"})
|
||||||
private int specialNameId;
|
private int specialNameId;
|
||||||
@SerializedName(value = "specialNameLabId", alternate={"specialNameLabID"})
|
|
||||||
|
@SerializedName(
|
||||||
|
value = "specialNameLabId",
|
||||||
|
alternate = {"specialNameLabID"})
|
||||||
private int specialNameLabId;
|
private int specialNameLabId;
|
||||||
|
|
||||||
private long specialNameTextMapHash;
|
private long specialNameTextMapHash;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getId() {
|
public int getId() {
|
||||||
return specialNameId;
|
return specialNameId;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user