cert
chengqf 2 years ago
parent 9dcb7db864
commit dc1181c09d

@ -69,10 +69,13 @@ public class UserRegisterController extends BaseController {
List<UserCertEntity> userCerts = new ArrayList<>();
if(userRegisterEntity==null) {
userRegisterEntity = new UserRegisterEntity();
} else {
userPersons = userPersonService.list(new QueryWrapper<UserPersonEntity>().eq("registerId", userRegisterEntity.getId()));
userCerts = userCertService.selectByRegisterId(userRegisterEntity.getId().toString());
}
userRegisterEntity.setMobile(mobile);
userRegisterService.saveOrUpdate(userRegisterEntity);
userRegisterEntity = userRegisterService.getOne(new QueryWrapper<UserRegisterEntity>().eq("mobile", mobile));
}
userPersons = userPersonService.list(new QueryWrapper<UserPersonEntity>().eq("registerId", userRegisterEntity.getId()));
userCerts = userCertService.selectByRegisterId(userRegisterEntity.getId().toString());
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>

Loading…
Cancel
Save