|
@@ -21,6 +21,7 @@ import org.springframework.security.core.userdetails.UserDetails;
|
|
|
import org.springframework.security.core.userdetails.UsernameNotFoundException;
|
|
|
import org.springframework.security.crypto.password.PasswordEncoder;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.transaction.annotation.Transactional;
|
|
|
import org.springframework.util.StringUtils;
|
|
|
|
|
|
import java.text.SimpleDateFormat;
|
|
@@ -55,6 +56,7 @@ public class UmsMemberPlatformServiceImpl implements UmsMemberPlatformService {
|
|
|
@Autowired
|
|
|
private UmsMemberService umsMemberService;
|
|
|
@Override
|
|
|
+ @Transactional
|
|
|
public String addUmsMemberPlatformService(UmsMemberPlatform umsMemberPlatform) {
|
|
|
String token = null;
|
|
|
UmsMemberPlatformExample example= new UmsMemberPlatformExample();
|