保存进度!
This commit is contained in:
parent
40bcfa916f
commit
a1c328714e
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,555 @@
|
|||||||
|
/*
|
||||||
|
* @Author: Kane
|
||||||
|
* @Date: 2022-10-10 14:45:30
|
||||||
|
* @LastEditors: Kane
|
||||||
|
* @LastEditTime: 2022-10-10 14:47:45
|
||||||
|
* @FilePath: \car_dealer\src\main\java\com\cpic\xim\car_dealer\models\data\structure\RepairOrder.java
|
||||||
|
* @Description: 送返修工单表
|
||||||
|
*
|
||||||
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||||
|
*/
|
||||||
|
package com.cpic.xim.car_dealer.models.data.structure;
|
||||||
|
|
||||||
|
/*****************************************************
|
||||||
|
* 送返修工单表
|
||||||
|
* @author Kane
|
||||||
|
* @version 1.0
|
||||||
|
*****************************************************/
|
||||||
|
public class RepairOrder
|
||||||
|
{
|
||||||
|
|
||||||
|
public RepairOrder( String branchName, String orderNo, String orderType, String notifyNo,
|
||||||
|
String damageArea, String damageDate, String generatingDate, String policyNo,
|
||||||
|
String policyNoJQX, String plateNumber, String brandName, String isInsuranceObject,
|
||||||
|
String isSuccess, String recommandDealerCode, String recommandDealerName,
|
||||||
|
String recommandDealerCodeInNotify, String recommandDealerNameInNotify,
|
||||||
|
String recommandDealerNameInSurvey, String agentName, String surveyor, String checkDate,
|
||||||
|
String repairingStartDate, String repairingFinishDate, String status, String lostItemID,
|
||||||
|
String surveyorRecommandStatus)
|
||||||
|
{
|
||||||
|
this.branchName = branchName;
|
||||||
|
this.orderNo = orderNo;
|
||||||
|
this.orderType = orderType;
|
||||||
|
this.notifyNo = notifyNo;
|
||||||
|
this.damageArea = damageArea;
|
||||||
|
this.damageDate = damageDate;
|
||||||
|
this.generatingDate = generatingDate;
|
||||||
|
this.policyNo = policyNo;
|
||||||
|
this.policyNoJQX = policyNoJQX;
|
||||||
|
this.plateNumber = plateNumber;
|
||||||
|
this.brandName = brandName;
|
||||||
|
this.isInsuranceObject = isInsuranceObject;
|
||||||
|
this.isSuccess = isSuccess;
|
||||||
|
this.recommandDealerCode = recommandDealerCode;
|
||||||
|
this.recommandDealerName = recommandDealerName;
|
||||||
|
this.recommandDealerCodeInNotify = recommandDealerCodeInNotify;
|
||||||
|
this.recommandDealerNameInNotify = recommandDealerNameInNotify;
|
||||||
|
this.recommandDealerNameInSurvey = recommandDealerNameInSurvey;
|
||||||
|
this.agentName = agentName;
|
||||||
|
this.surveyor = surveyor;
|
||||||
|
this.checkDate = checkDate;
|
||||||
|
this.repairingStartDate = repairingStartDate;
|
||||||
|
this.repairingFinishDate = repairingFinishDate;
|
||||||
|
this.status = status;
|
||||||
|
this.lostItemID = lostItemID;
|
||||||
|
this.surveyorRecommandStatus = surveyorRecommandStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBranchName()
|
||||||
|
{
|
||||||
|
return branchName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBranchName( String branchName )
|
||||||
|
{
|
||||||
|
this.branchName = branchName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getOrderNo()
|
||||||
|
{
|
||||||
|
return orderNo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setOrderNo( String orderNo )
|
||||||
|
{
|
||||||
|
this.orderNo = orderNo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getOrderType()
|
||||||
|
{
|
||||||
|
return orderType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setOrderType( String orderType )
|
||||||
|
{
|
||||||
|
this.orderType = orderType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getNotifyNo()
|
||||||
|
{
|
||||||
|
return notifyNo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setNotifyNo( String notifyNo )
|
||||||
|
{
|
||||||
|
this.notifyNo = notifyNo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDamageArea()
|
||||||
|
{
|
||||||
|
return damageArea;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDamageArea( String damageArea )
|
||||||
|
{
|
||||||
|
this.damageArea = damageArea;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDamageDate()
|
||||||
|
{
|
||||||
|
return damageDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDamageDate( String damageDate )
|
||||||
|
{
|
||||||
|
this.damageDate = damageDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getGeneratingDate()
|
||||||
|
{
|
||||||
|
return generatingDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setGeneratingDate( String generatingDate )
|
||||||
|
{
|
||||||
|
this.generatingDate = generatingDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPolicyNo()
|
||||||
|
{
|
||||||
|
return policyNo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPolicyNo( String policyNo )
|
||||||
|
{
|
||||||
|
this.policyNo = policyNo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPolicyNoJQX()
|
||||||
|
{
|
||||||
|
return policyNoJQX;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPolicyNoJQX( String policyNoJQX )
|
||||||
|
{
|
||||||
|
this.policyNoJQX = policyNoJQX;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPlateNumber()
|
||||||
|
{
|
||||||
|
return plateNumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPlateNumber( String plateNumber )
|
||||||
|
{
|
||||||
|
this.plateNumber = plateNumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBrandName()
|
||||||
|
{
|
||||||
|
return brandName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBrandName( String brandName )
|
||||||
|
{
|
||||||
|
this.brandName = brandName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getIsInsuranceObject()
|
||||||
|
{
|
||||||
|
return isInsuranceObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIsInsuranceObject( String isInsuranceObject )
|
||||||
|
{
|
||||||
|
this.isInsuranceObject = isInsuranceObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getIsSuccess()
|
||||||
|
{
|
||||||
|
return isSuccess;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIsSuccess( String isSuccess )
|
||||||
|
{
|
||||||
|
this.isSuccess = isSuccess;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRecommandDealerCode()
|
||||||
|
{
|
||||||
|
return recommandDealerCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRecommandDealerCode( String recommandDealerCode )
|
||||||
|
{
|
||||||
|
this.recommandDealerCode = recommandDealerCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRecommandDealerName()
|
||||||
|
{
|
||||||
|
return recommandDealerName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRecommandDealerName( String recommandDealerName )
|
||||||
|
{
|
||||||
|
this.recommandDealerName = recommandDealerName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRecommandDealerCodeInNotify()
|
||||||
|
{
|
||||||
|
return recommandDealerCodeInNotify;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRecommandDealerCodeInNotify( String recommandDealerCodeInNotify )
|
||||||
|
{
|
||||||
|
this.recommandDealerCodeInNotify = recommandDealerCodeInNotify;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRecommandDealerNameInNotify()
|
||||||
|
{
|
||||||
|
return recommandDealerNameInNotify;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRecommandDealerNameInNotify( String recommandDealerNameInNotify )
|
||||||
|
{
|
||||||
|
this.recommandDealerNameInNotify = recommandDealerNameInNotify;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRecommandDealerNameInSurvey()
|
||||||
|
{
|
||||||
|
return recommandDealerNameInSurvey;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRecommandDealerNameInSurvey( String recommandDealerNameInSurvey )
|
||||||
|
{
|
||||||
|
this.recommandDealerNameInSurvey = recommandDealerNameInSurvey;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAgentName()
|
||||||
|
{
|
||||||
|
return agentName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAgentName( String agentName )
|
||||||
|
{
|
||||||
|
this.agentName = agentName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSurveyor()
|
||||||
|
{
|
||||||
|
return surveyor;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSurveyor( String surveyor )
|
||||||
|
{
|
||||||
|
this.surveyor = surveyor;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCheckDate()
|
||||||
|
{
|
||||||
|
return checkDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCheckDate( String checkDate )
|
||||||
|
{
|
||||||
|
this.checkDate = checkDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRepairingStartDate()
|
||||||
|
{
|
||||||
|
return repairingStartDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRepairingStartDate( String repairingStartDate )
|
||||||
|
{
|
||||||
|
this.repairingStartDate = repairingStartDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRepairingFinishDate()
|
||||||
|
{
|
||||||
|
return repairingFinishDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRepairingFinishDate( String repairingFinishDate )
|
||||||
|
{
|
||||||
|
this.repairingFinishDate = repairingFinishDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getStatus()
|
||||||
|
{
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStatus( String status )
|
||||||
|
{
|
||||||
|
this.status = status;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getLostItemID()
|
||||||
|
{
|
||||||
|
return lostItemID;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLostItemID( String lostItemID )
|
||||||
|
{
|
||||||
|
this.lostItemID = lostItemID;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSurveyorRecommandStatus()
|
||||||
|
{
|
||||||
|
return surveyorRecommandStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSurveyorRecommandStatus( String surveyorRecommandStatus )
|
||||||
|
{
|
||||||
|
this.surveyorRecommandStatus = surveyorRecommandStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int hashCode()
|
||||||
|
{
|
||||||
|
final int prime = 31;
|
||||||
|
int result = 1;
|
||||||
|
result = prime * result + ((branchName == null) ? 0 : branchName.hashCode());
|
||||||
|
result = prime * result + ((orderNo == null) ? 0 : orderNo.hashCode());
|
||||||
|
result = prime * result + ((orderType == null) ? 0 : orderType.hashCode());
|
||||||
|
result = prime * result + ((notifyNo == null) ? 0 : notifyNo.hashCode());
|
||||||
|
result = prime * result + ((damageArea == null) ? 0 : damageArea.hashCode());
|
||||||
|
result = prime * result + ((damageDate == null) ? 0 : damageDate.hashCode());
|
||||||
|
result = prime * result + ((generatingDate == null) ? 0 : generatingDate.hashCode());
|
||||||
|
result = prime * result + ((policyNo == null) ? 0 : policyNo.hashCode());
|
||||||
|
result = prime * result + ((policyNoJQX == null) ? 0 : policyNoJQX.hashCode());
|
||||||
|
result = prime * result + ((plateNumber == null) ? 0 : plateNumber.hashCode());
|
||||||
|
result = prime * result + ((brandName == null) ? 0 : brandName.hashCode());
|
||||||
|
result = prime * result + ((isInsuranceObject == null) ? 0 : isInsuranceObject.hashCode());
|
||||||
|
result = prime * result + ((isSuccess == null) ? 0 : isSuccess.hashCode());
|
||||||
|
result = prime * result
|
||||||
|
+ ((recommandDealerCode == null) ? 0 : recommandDealerCode.hashCode());
|
||||||
|
result = prime * result
|
||||||
|
+ ((recommandDealerName == null) ? 0 : recommandDealerName.hashCode());
|
||||||
|
result = prime * result + ((recommandDealerCodeInNotify == null) ? 0
|
||||||
|
: recommandDealerCodeInNotify.hashCode());
|
||||||
|
result = prime * result + ((recommandDealerNameInNotify == null) ? 0
|
||||||
|
: recommandDealerNameInNotify.hashCode());
|
||||||
|
result = prime * result + ((recommandDealerNameInSurvey == null) ? 0
|
||||||
|
: recommandDealerNameInSurvey.hashCode());
|
||||||
|
result = prime * result + ((agentName == null) ? 0 : agentName.hashCode());
|
||||||
|
result = prime * result + ((surveyor == null) ? 0 : surveyor.hashCode());
|
||||||
|
result = prime * result + ((checkDate == null) ? 0 : checkDate.hashCode());
|
||||||
|
result = prime * result
|
||||||
|
+ ((repairingStartDate == null) ? 0 : repairingStartDate.hashCode());
|
||||||
|
result = prime * result
|
||||||
|
+ ((repairingFinishDate == null) ? 0 : repairingFinishDate.hashCode());
|
||||||
|
result = prime * result + ((status == null) ? 0 : status.hashCode());
|
||||||
|
result = prime * result + ((lostItemID == null) ? 0 : lostItemID.hashCode());
|
||||||
|
result = prime * result
|
||||||
|
+ ((surveyorRecommandStatus == null) ? 0 : surveyorRecommandStatus.hashCode());
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean equals( Object obj )
|
||||||
|
{
|
||||||
|
if ( this == obj)
|
||||||
|
return true;
|
||||||
|
if ( obj == null)
|
||||||
|
return false;
|
||||||
|
if ( getClass() != obj.getClass())
|
||||||
|
return false;
|
||||||
|
RepairOrder other = (RepairOrder) obj;
|
||||||
|
if ( branchName == null)
|
||||||
|
{
|
||||||
|
if ( other.branchName != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !branchName.equals( other.branchName ))
|
||||||
|
return false;
|
||||||
|
if ( orderNo == null)
|
||||||
|
{
|
||||||
|
if ( other.orderNo != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !orderNo.equals( other.orderNo ))
|
||||||
|
return false;
|
||||||
|
if ( orderType == null)
|
||||||
|
{
|
||||||
|
if ( other.orderType != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !orderType.equals( other.orderType ))
|
||||||
|
return false;
|
||||||
|
if ( notifyNo == null)
|
||||||
|
{
|
||||||
|
if ( other.notifyNo != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !notifyNo.equals( other.notifyNo ))
|
||||||
|
return false;
|
||||||
|
if ( damageArea == null)
|
||||||
|
{
|
||||||
|
if ( other.damageArea != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !damageArea.equals( other.damageArea ))
|
||||||
|
return false;
|
||||||
|
if ( damageDate == null)
|
||||||
|
{
|
||||||
|
if ( other.damageDate != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !damageDate.equals( other.damageDate ))
|
||||||
|
return false;
|
||||||
|
if ( generatingDate == null)
|
||||||
|
{
|
||||||
|
if ( other.generatingDate != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !generatingDate.equals( other.generatingDate ))
|
||||||
|
return false;
|
||||||
|
if ( policyNo == null)
|
||||||
|
{
|
||||||
|
if ( other.policyNo != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !policyNo.equals( other.policyNo ))
|
||||||
|
return false;
|
||||||
|
if ( policyNoJQX == null)
|
||||||
|
{
|
||||||
|
if ( other.policyNoJQX != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !policyNoJQX.equals( other.policyNoJQX ))
|
||||||
|
return false;
|
||||||
|
if ( plateNumber == null)
|
||||||
|
{
|
||||||
|
if ( other.plateNumber != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !plateNumber.equals( other.plateNumber ))
|
||||||
|
return false;
|
||||||
|
if ( brandName == null)
|
||||||
|
{
|
||||||
|
if ( other.brandName != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !brandName.equals( other.brandName ))
|
||||||
|
return false;
|
||||||
|
if ( isInsuranceObject == null)
|
||||||
|
{
|
||||||
|
if ( other.isInsuranceObject != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !isInsuranceObject.equals( other.isInsuranceObject ))
|
||||||
|
return false;
|
||||||
|
if ( isSuccess == null)
|
||||||
|
{
|
||||||
|
if ( other.isSuccess != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !isSuccess.equals( other.isSuccess ))
|
||||||
|
return false;
|
||||||
|
if ( recommandDealerCode == null)
|
||||||
|
{
|
||||||
|
if ( other.recommandDealerCode != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !recommandDealerCode.equals( other.recommandDealerCode ))
|
||||||
|
return false;
|
||||||
|
if ( recommandDealerName == null)
|
||||||
|
{
|
||||||
|
if ( other.recommandDealerName != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !recommandDealerName.equals( other.recommandDealerName ))
|
||||||
|
return false;
|
||||||
|
if ( recommandDealerCodeInNotify == null)
|
||||||
|
{
|
||||||
|
if ( other.recommandDealerCodeInNotify != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !recommandDealerCodeInNotify.equals( other.recommandDealerCodeInNotify ))
|
||||||
|
return false;
|
||||||
|
if ( recommandDealerNameInNotify == null)
|
||||||
|
{
|
||||||
|
if ( other.recommandDealerNameInNotify != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !recommandDealerNameInNotify.equals( other.recommandDealerNameInNotify ))
|
||||||
|
return false;
|
||||||
|
if ( recommandDealerNameInSurvey == null)
|
||||||
|
{
|
||||||
|
if ( other.recommandDealerNameInSurvey != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !recommandDealerNameInSurvey.equals( other.recommandDealerNameInSurvey ))
|
||||||
|
return false;
|
||||||
|
if ( agentName == null)
|
||||||
|
{
|
||||||
|
if ( other.agentName != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !agentName.equals( other.agentName ))
|
||||||
|
return false;
|
||||||
|
if ( surveyor == null)
|
||||||
|
{
|
||||||
|
if ( other.surveyor != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !surveyor.equals( other.surveyor ))
|
||||||
|
return false;
|
||||||
|
if ( checkDate == null)
|
||||||
|
{
|
||||||
|
if ( other.checkDate != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !checkDate.equals( other.checkDate ))
|
||||||
|
return false;
|
||||||
|
if ( repairingStartDate == null)
|
||||||
|
{
|
||||||
|
if ( other.repairingStartDate != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !repairingStartDate.equals( other.repairingStartDate ))
|
||||||
|
return false;
|
||||||
|
if ( repairingFinishDate == null)
|
||||||
|
{
|
||||||
|
if ( other.repairingFinishDate != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !repairingFinishDate.equals( other.repairingFinishDate ))
|
||||||
|
return false;
|
||||||
|
if ( status == null)
|
||||||
|
{
|
||||||
|
if ( other.status != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !status.equals( other.status ))
|
||||||
|
return false;
|
||||||
|
if ( lostItemID == null)
|
||||||
|
{
|
||||||
|
if ( other.lostItemID != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !lostItemID.equals( other.lostItemID ))
|
||||||
|
return false;
|
||||||
|
if ( surveyorRecommandStatus == null)
|
||||||
|
{
|
||||||
|
if ( other.surveyorRecommandStatus != null)
|
||||||
|
return false;
|
||||||
|
} else if ( !surveyorRecommandStatus.equals( other.surveyorRecommandStatus ))
|
||||||
|
return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String branchName;
|
||||||
|
private String orderNo;
|
||||||
|
private String orderType;
|
||||||
|
private String notifyNo;
|
||||||
|
private String damageArea;
|
||||||
|
private String damageDate;
|
||||||
|
private String generatingDate;
|
||||||
|
private String policyNo;
|
||||||
|
private String policyNoJQX;
|
||||||
|
private String plateNumber;
|
||||||
|
private String brandName;
|
||||||
|
private String isInsuranceObject;
|
||||||
|
private String isSuccess;
|
||||||
|
private String recommandDealerCode;
|
||||||
|
private String recommandDealerName;
|
||||||
|
private String recommandDealerCodeInNotify;
|
||||||
|
private String recommandDealerNameInNotify;
|
||||||
|
private String recommandDealerNameInSurvey;
|
||||||
|
private String agentName;
|
||||||
|
private String surveyor; // 查勘员
|
||||||
|
private String checkDate;
|
||||||
|
private String repairingStartDate;
|
||||||
|
private String repairingFinishDate;
|
||||||
|
private String status;
|
||||||
|
private String lostItemID;
|
||||||
|
private String surveyorRecommandStatus;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user