顾绍勇 пре 5 година
родитељ
комит
3b8587aa1c

+ 2
- 0
src/main/java/com/huiju/estateagents/third/service/impl/TaThirdPartyMiniappConfigServiceImpl.java Прегледај датотеку

206
 					break;
206
 					break;
207
 			}
207
 			}
208
 		});
208
 		});
209
+
209
 		//活动信息
210
 		//活动信息
210
 		map.put("taRedPacket",taRedPacket);
211
 		map.put("taRedPacket",taRedPacket);
212
+		map.put("taDrainage",taDrainage);
211
 
213
 
212
 		//是否我的红包助力报名信息
214
 		//是否我的红包助力报名信息
213
 		QueryWrapper<TaRedPacketPerson> queryWrapper = new QueryWrapper<>();
215
 		QueryWrapper<TaRedPacketPerson> queryWrapper = new QueryWrapper<>();

+ 0
- 30
src/test/java/com/huiju/estateagents/TdCityServiceImplTest.java Прегледај датотеку

1
-package com.huiju.estateagents;
2
-
3
-import com.huiju.estateagents.entity.TdCity;
4
-import com.huiju.estateagents.service.ITdCityService;
5
-import org.junit.Assert;
6
-import org.junit.Test;
7
-import org.junit.runner.RunWith;
8
-import org.springframework.beans.factory.annotation.Autowired;
9
-import org.springframework.boot.test.context.SpringBootTest;
10
-import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
11
-import org.springframework.transaction.annotation.Transactional;
12
-
13
-
14
-@RunWith(SpringJUnit4ClassRunner.class)
15
-@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
16
-@Transactional
17
-public class TdCityServiceImplTest {
18
-	
19
-//	@Autowired
20
-//	private ITdCityService iTdCityService;
21
-
22
-	@Test
23
-	public void getLocationCity() {
24
-//		TdCity locationCity = iTdCityService.getLocationCity("116.310003,39.991957");
25
-//		//断言 对象不为null
26
-//		Assert.assertNotNull(locationCity);
27
-//		//断言获取的是北京市
28
-//		Assert.assertEquals("北京市",locationCity.getName());
29
-	}
30
-}