@ -69,10 +69,13 @@ public class UserRegisterController extends BaseController {
List<UserCertEntity> userCerts = new ArrayList<>();
if(userRegisterEntity==null) {
userRegisterEntity = new UserRegisterEntity();
} else {
userRegisterEntity.setMobile(mobile);
userPersons = userPersonService.list(new QueryWrapper<UserPersonEntity>().eq("registerId", userRegisterEntity.getId()));
userRegisterService.saveOrUpdate(userRegisterEntity);
userCerts = userCertService.selectByRegisterId(userRegisterEntity.getId().toString());
userRegisterEntity = userRegisterService.getOne(new QueryWrapper<UserRegisterEntity>().eq("mobile", mobile));
}
map.put("registerInfo", userRegisterEntity);
map.put("userPersons", userPersons);
map.put("userCerts", userCerts);
@ -27,7 +27,8 @@
</sql>
<select id="selectByRegisterId" parameterType="java.lang.String"
resultType="com.glxp.api.entity.sup.UserCertEntity">
SELECT a.id,c.name,c.isNeed,a.businessId,a.companyId,a.code,a.filePath,a.validDate,a.expireDate,a.checkStatus,a.checkTime,a.checkComment,a.status,a.remark FROM user_cert_set c LEFT JOIN
SELECT a.id,c.name,c.isNeed,ifnull(a.businessId,#{registerId}) businessId,a.companyId,a.code,a.filePath,a.validDate,a.expireDate,a.checkStatus,a.checkTime,a.checkComment,a.status,a.remark
FROM user_cert_set c LEFT JOIN
(SELECT * from user_cert WHERE businessId=#{registerId}) a ON c.name = a.name
</select>
</mapper>