|
@@ -179,7 +179,7 @@ public class TaCompanyServiceImpl extends ServiceImpl<TaCompanyMapper, TaCompany
|
179
|
179
|
taCompany.setCreditCode(companyJson.getString("organization"));
|
180
|
180
|
taCompany.setStatus(companyJson.getInteger("status"));
|
181
|
181
|
taCompany.setReason(companyJson.getString("auditFailReason"));
|
182
|
|
-
|
|
182
|
+ taCompany.setVerifyTime(null);
|
183
|
183
|
DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
|
184
|
184
|
String auditorTime = companyJson.getString("auditorTime");
|
185
|
185
|
if (!StringUtils.isEmpty(auditorTime)){
|
|
@@ -187,7 +187,7 @@ public class TaCompanyServiceImpl extends ServiceImpl<TaCompanyMapper, TaCompany
|
187
|
187
|
String substringTime = auditorTime.substring(0, index);
|
188
|
188
|
taCompany.setVerifyTime(LocalDateTime.parse(substringTime,df));
|
189
|
189
|
}
|
190
|
|
- taCompany.setVerifyTime(null);
|
|
190
|
+
|
191
|
191
|
}
|
192
|
192
|
|
193
|
193
|
//银行卡信息
|