...
|
...
|
@@ -46,7 +46,7 @@ public class BusinessLicenseController { |
|
|
if(StringUtils.isEmpty(businessName) || StringUtils.isEmpty(socialCreditCode) || StringUtils.isEmpty(certName) || StringUtils.isEmpty(certNo)
|
|
|
|| StringUtils.isEmpty(startTime) || StringUtils.isEmpty(expireTime) || StringUtils.isEmpty(licenseOriginalImage)
|
|
|
|| StringUtils.isEmpty(licenseCopyImage) || StringUtils.isEmpty(certFaceImage) || StringUtils.isEmpty(certReverseImage)
|
|
|
|| null == uid || null == businessType) {
|
|
|
|| null == uid || null == businessType || 0 == uid.intValue()) {
|
|
|
return new ApiResponse.ApiResponseBuilder().code(500).message("有参数为空").build();
|
|
|
}
|
|
|
BusinessLicense bl = new BusinessLicense();
|
...
|
...
|
|