@ -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 ) ;