|
@@ -12,7 +12,7 @@ public class WarrantyList {
|
|
|
private String result;
|
|
|
private String resultMsg;
|
|
|
@JSONField(name="content")
|
|
|
- private List<WarrantyList> warrantyList;
|
|
|
+ private List<Warranty> warrantyList;
|
|
|
|
|
|
public String getResult() {
|
|
|
return result;
|
|
@@ -30,42 +30,12 @@ public class WarrantyList {
|
|
|
this.resultMsg = resultMsg;
|
|
|
}
|
|
|
|
|
|
- public List<WarrantyList> getWarrantyList() {
|
|
|
+ public List<Warranty> getWarrantyList() {
|
|
|
return warrantyList;
|
|
|
}
|
|
|
|
|
|
- public void setWarrantyList(List<WarrantyList> warrantyList) {
|
|
|
+ public void setWarrantyList(List<Warranty> warrantyList) {
|
|
|
this.warrantyList = warrantyList;
|
|
|
}
|
|
|
|
|
|
- public class Warrnaty{
|
|
|
-
|
|
|
- private String insuranceNo;
|
|
|
- private String expireDate;
|
|
|
- private String contractFile;
|
|
|
-
|
|
|
- public String getInsuranceNo() {
|
|
|
- return insuranceNo;
|
|
|
- }
|
|
|
-
|
|
|
- public void setInsuranceNo(String insuranceNo) {
|
|
|
- this.insuranceNo = insuranceNo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getExpireDate() {
|
|
|
- return expireDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setExpireDate(String expireDate) {
|
|
|
- this.expireDate = expireDate;
|
|
|
- }
|
|
|
-
|
|
|
- public String getContractFile() {
|
|
|
- return contractFile;
|
|
|
- }
|
|
|
-
|
|
|
- public void setContractFile(String contractFile) {
|
|
|
- this.contractFile = contractFile;
|
|
|
- }
|
|
|
- }
|
|
|
}
|