Commit 179ea2c6 authored by Java—KA—李 青's avatar Java—KA—李 青

删除注释

parent c531df8d
...@@ -30,13 +30,6 @@ public class UserRegisterServiceImpl extends AbstractUserRegisterService { ...@@ -30,13 +30,6 @@ public class UserRegisterServiceImpl extends AbstractUserRegisterService {
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
@Override @Override
public User register(Long registerFrom, String phoneNo, String idNo, String name, Long channelId, Long btRegisterChannelId) { public User register(Long registerFrom, String phoneNo, String idNo, String name, Long channelId, Long btRegisterChannelId) {
// 1、生成6位随机密码
// 2、同步lkb
// 3、保存user
// 4、发送短信
// 5、保存userDetail
// 6、发送mq
// 7、保存bt
UserRegisterParam userRegisterParam = UserRegisterParam.builder() UserRegisterParam userRegisterParam = UserRegisterParam.builder()
.registerFrom(registerFrom).phoneNo(phoneNo).idNo(idNo).name(name) .registerFrom(registerFrom).phoneNo(phoneNo).idNo(idNo).name(name)
.channelId(channelId).btRegisterChannelId(btRegisterChannelId) .channelId(channelId).btRegisterChannelId(btRegisterChannelId)
...@@ -49,8 +42,6 @@ public class UserRegisterServiceImpl extends AbstractUserRegisterService { ...@@ -49,8 +42,6 @@ public class UserRegisterServiceImpl extends AbstractUserRegisterService {
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
@Override @Override
public User register(String phoneNo, String password, Long registerFrom) { public User register(String phoneNo, String password, Long registerFrom) {
// 1、同步lkb
// 2、保存user
UserRegisterParam userRegisterParam = UserRegisterParam.builder() UserRegisterParam userRegisterParam = UserRegisterParam.builder()
.registerFrom(registerFrom).phoneNo(phoneNo).password(password) .registerFrom(registerFrom).phoneNo(phoneNo).password(password)
.generateRandomPwd(false).sendSuccessSms(true).sendAppSms(true) .generateRandomPwd(false).sendSuccessSms(true).sendAppSms(true)
...@@ -62,11 +53,6 @@ public class UserRegisterServiceImpl extends AbstractUserRegisterService { ...@@ -62,11 +53,6 @@ public class UserRegisterServiceImpl extends AbstractUserRegisterService {
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
@Override @Override
public boolean register(String phoneNo, String password, Long registerFrom, String ip, Long channelId, Long btRegisterChannelId, String dimension) { public boolean register(String phoneNo, String password, Long registerFrom, String ip, Long channelId, Long btRegisterChannelId, String dimension) {
// 1、同步lkb
// 2、保存user
// 3、保存bt
// 4、发送短信
// 5、发送mq
UserRegisterParam userRegisterParam = UserRegisterParam.builder() UserRegisterParam userRegisterParam = UserRegisterParam.builder()
.registerFrom(registerFrom).phoneNo(phoneNo).password(password) .registerFrom(registerFrom).phoneNo(phoneNo).password(password)
.channelId(channelId).btRegisterChannelId(btRegisterChannelId) .channelId(channelId).btRegisterChannelId(btRegisterChannelId)
...@@ -81,11 +67,6 @@ public class UserRegisterServiceImpl extends AbstractUserRegisterService { ...@@ -81,11 +67,6 @@ public class UserRegisterServiceImpl extends AbstractUserRegisterService {
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
@Override @Override
public User register(String phoneNo, Long channelId, Long registerFrom, String appChannel, Long btRegisterChannelId, String dimension) { public User register(String phoneNo, Long channelId, Long registerFrom, String appChannel, Long btRegisterChannelId, String dimension) {
// 1、生成15位随机密码
// 2、同步lkb
// 3、保存user
// 4、保存bt
// 5、发送mq
UserRegisterParam userRegisterParam = UserRegisterParam.builder() UserRegisterParam userRegisterParam = UserRegisterParam.builder()
.registerFrom(registerFrom).phoneNo(phoneNo) .registerFrom(registerFrom).phoneNo(phoneNo)
.channelId(channelId).btRegisterChannelId(btRegisterChannelId) .channelId(channelId).btRegisterChannelId(btRegisterChannelId)
...@@ -99,13 +80,6 @@ public class UserRegisterServiceImpl extends AbstractUserRegisterService { ...@@ -99,13 +80,6 @@ public class UserRegisterServiceImpl extends AbstractUserRegisterService {
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
@Override @Override
public User register(Long registeredFrom, Long channelId, String phoneNo, String name, String idNo, String provinceCode, String province, String cityCode, String city, String districtCode, String district, String address, String contacts) { public User register(Long registeredFrom, Long channelId, String phoneNo, String name, String idNo, String provinceCode, String province, String cityCode, String city, String districtCode, String district, String address, String contacts) {
// 1、生成6位随机密码
// 2、同步lkb
// 3、保存user
// 4、保存bt:btRegisterChannelId = registeredFrom
// 5、保存address
// 6、保存userDetail
// 7、保存联系人
Address addressObj = new Address(); Address addressObj = new Address();
addressObj.setProvinceCode(Long.valueOf(provinceCode)); addressObj.setProvinceCode(Long.valueOf(provinceCode));
addressObj.setProvince(province); addressObj.setProvince(province);
...@@ -127,11 +101,6 @@ public class UserRegisterServiceImpl extends AbstractUserRegisterService { ...@@ -127,11 +101,6 @@ public class UserRegisterServiceImpl extends AbstractUserRegisterService {
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
@Override @Override
public User register(Long registerFrom, String phoneNo, String idNo, String name, Long channelId) { public User register(Long registerFrom, String phoneNo, String idNo, String name, Long channelId) {
// 1、生成6位随机密码
// 2、同步lkb
// 3、保存user
// 4、发送短信
// 5、保存userDetail
UserRegisterParam userRegisterParam = UserRegisterParam.builder() UserRegisterParam userRegisterParam = UserRegisterParam.builder()
.registerFrom(registerFrom).phoneNo(phoneNo).idNo(idNo).name(name) .registerFrom(registerFrom).phoneNo(phoneNo).idNo(idNo).name(name)
.channelId(channelId) .channelId(channelId)
......
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