This commit is contained in:
2024-02-01 17:03:41 +08:00
parent c002bced53
commit d90498520d

View File

@@ -595,8 +595,8 @@ public abstract class AbstractProgramLogic implements InitializingBean {
protected void vinStatusUnlocked(String vinCode) { protected void vinStatusUnlocked(String vinCode) {
try { try {
MemberPlateNumberRelation plateInfo = memberPlateNumberRelationService.getMemberPlateInfoByVinCode(vinCode); MemberPlateNumberRelation plateInfo = memberPlateNumberRelationService.getMemberPlateInfoByVinCode(vinCode);
if (plateInfo != null && (StringUtils.equals(plateInfo.getVinStatus(), "2"))) { if (plateInfo != null) {
plateInfo.setVinStatus("1"); plateInfo.setVinStatus(Constants.ONE);
memberPlateNumberRelationService.updateMemberPlateNumberRelation(plateInfo); memberPlateNumberRelationService.updateMemberPlateNumberRelation(plateInfo);
} }
} catch (Exception e) { } catch (Exception e) {