|
@@ -103,7 +103,7 @@ public class StudentRegistration {
|
|
|
|
|
|
private String schoolName;
|
|
private String schoolName;
|
|
|
|
|
|
- private KitPurchaseMethodEnum KitType;
|
|
|
|
|
|
+ private KitPurchaseMethodEnum kitType;
|
|
|
|
|
|
public BigDecimal getBalance() {
|
|
public BigDecimal getBalance() {
|
|
return balance;
|
|
return balance;
|
|
@@ -353,10 +353,10 @@ public class StudentRegistration {
|
|
}
|
|
}
|
|
|
|
|
|
public KitPurchaseMethodEnum getKitType() {
|
|
public KitPurchaseMethodEnum getKitType() {
|
|
- return KitType;
|
|
|
|
|
|
+ return kitType;
|
|
}
|
|
}
|
|
|
|
|
|
public void setKitType(KitPurchaseMethodEnum kitType) {
|
|
public void setKitType(KitPurchaseMethodEnum kitType) {
|
|
- KitType = kitType;
|
|
|
|
|
|
+ this.kitType = kitType;
|
|
}
|
|
}
|
|
}
|
|
}
|