feat: support decimal on weight
This commit is contained in:
@@ -107,7 +107,7 @@ public class CompetitionData {
|
||||
public static class SimpleRegister {
|
||||
long id;
|
||||
int overCategory;
|
||||
Integer weight;
|
||||
Float weight;
|
||||
Categorie categorie;
|
||||
Long club;
|
||||
String club_str;
|
||||
|
||||
@@ -18,8 +18,8 @@ public class RegisterRequestData {
|
||||
private String fname;
|
||||
private String lname;
|
||||
|
||||
private Integer weight;
|
||||
private Integer weightReal;
|
||||
private Float weight;
|
||||
private Float weightReal;
|
||||
private Integer overCategory;
|
||||
private boolean lockEdit = false;
|
||||
private List<Long> categoriesInscrites;
|
||||
|
||||
@@ -26,8 +26,8 @@ public class SimpleRegisterComb {
|
||||
private Categorie categorie;
|
||||
private SimpleClubModel club;
|
||||
private Integer licence;
|
||||
private Integer weight;
|
||||
private Integer weightReal;
|
||||
private Float weight;
|
||||
private Float weightReal;
|
||||
private int overCategory;
|
||||
private boolean hasLicenceActive;
|
||||
private boolean lockEdit;
|
||||
|
||||
Reference in New Issue
Block a user