Commit b8806919 by zhangxingmin

Merge remote-tracking branch 'origin/dev' into prod

parents 23881464 6f500998
......@@ -64,6 +64,7 @@ public class ApiRelObjectCertificateServiceImpl implements ApiRelObjectCertifica
BeanUtils.copyProperties(request,relObjectCertificate);
BeanUtils.copyProperties(dto,relObjectCertificate);
relObjectCertificate.setRelObjectCertificateBizId(RandomStringGenerator.generateBizId16(CommonEnum.UID_TYPE_REL_OBJECT_CERTIFICATE.getCode()));
relObjectCertificate.setId(null);
return relObjectCertificate;
}).collect(Collectors.toList());
iRelObjectCertificateService.saveOrUpdateBatch(addList);
......
......@@ -10,6 +10,11 @@ import java.time.LocalDateTime;
public class ApiCertificateDto {
/**
* 主键ID
*/
private Long id;
/**
* 证件类型
*/
private String documentType;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment