|
|
|
@ -241,6 +241,11 @@ public class SupCertController {
|
|
|
|
|
supCertEntity.setUpdateTime(new Date());
|
|
|
|
|
supCertEntity.setStatus(0);
|
|
|
|
|
supCertEntity.setId(IdUtil.getSnowflakeNextId());
|
|
|
|
|
if (supCertEntity.getVailDate() != null && supCertEntity.getExpireDate() != null) {
|
|
|
|
|
if (supCertEntity.getVailDate().getTime() > supCertEntity.getExpireDate().getTime()) {
|
|
|
|
|
return ResultVOUtils.error(999, "失效期不能小于生效期!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
boolean b = supCertService.insertCompanyCert(supCertEntity);
|
|
|
|
|
return ResultVOUtils.success("成功");
|
|
|
|
|
}
|
|
|
|
|