Commit 5a638aca by 陶光胜

init

parent e6ec50f4
...@@ -120,8 +120,8 @@ public class StoreInfoMessageHandler implements MessageHandler { ...@@ -120,8 +120,8 @@ public class StoreInfoMessageHandler implements MessageHandler {
storeSearchDtoOne.setRegionId(Integer.valueOf(fieldMap.get("old_region_id").getValue())); storeSearchDtoOne.setRegionId(Integer.valueOf(fieldMap.get("old_region_id").getValue()));
storeSearchDtoOne.setSearchJson(storeWidgetDTO.getSearchParam()); storeSearchDtoOne.setSearchJson(storeWidgetDTO.getSearchParam());
storeSearchDtoOne.setEnterpriseId(enterpriseId); storeSearchDtoOne.setEnterpriseId(enterpriseId);
ServiceResponse<Page<StoreDTO>> response1 = this.storeApiService.listStore(storeSearchDTO, 1, 1); ServiceResponse<Page<StoreDTO>> responseOne = this.storeApiService.listStore(storeSearchDTO, 1, 1);
if(CollectionUtils.isEmpty(response1.getResult().getResult())){ if(CollectionUtils.isEmpty(responseOne.getResult().getResult())){
this.storeRegionApiService.unAuthorizeRegion(dto.getUnionEnterpriseId(), Integer.valueOf(fieldMap.get("old_region_id").getValue())); this.storeRegionApiService.unAuthorizeRegion(dto.getUnionEnterpriseId(), Integer.valueOf(fieldMap.get("old_region_id").getValue()));
} }
} }
......
...@@ -3,8 +3,25 @@ package com.gic.message.service.impl; ...@@ -3,8 +3,25 @@ package com.gic.message.service.impl;
import com.gic.message.service.TestService; import com.gic.message.service.TestService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
/**
* test
* @Title: test
* @Description:
* @author taogs
* @param null
* @return
* @throws
*/
@Service("testService") @Service("testService")
public class TestServiceImpl implements TestService { public class TestServiceImpl implements TestService {
/**
* test
* @Title: test
* @Description:
* @author taogs
* @return void
* @throws
*/
@Override @Override
public void test() { public void test() {
System.out.println("true = " + true); System.out.println("true = " + true);
......
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