|
|
@@ -1669,7 +1669,7 @@ public class IMediaDataServiceImpl implements IMediaDataService {
|
|
|
pitcher_id,
|
|
|
source_system,
|
|
|
account_type,
|
|
|
- dayN
|
|
|
+ day_n
|
|
|
FROM
|
|
|
game_ads.ads_game_pitcher_account_dayn
|
|
|
""" + cri);
|
|
|
@@ -1681,7 +1681,7 @@ public class IMediaDataServiceImpl implements IMediaDataService {
|
|
|
pitcher_id,
|
|
|
source_system,
|
|
|
account_type,
|
|
|
- dayN
|
|
|
+ day_n
|
|
|
FROM
|
|
|
game_ads_parent.ads_game_pitcher_account_dayn_parent
|
|
|
""" + cri);
|
|
|
@@ -1755,7 +1755,7 @@ public class IMediaDataServiceImpl implements IMediaDataService {
|
|
|
pitcher_id,
|
|
|
source_system,
|
|
|
account_type,
|
|
|
- dayN
|
|
|
+ day_n
|
|
|
FROM
|
|
|
""" +tableName + cri);
|
|
|
|
|
|
@@ -1828,7 +1828,7 @@ public class IMediaDataServiceImpl implements IMediaDataService {
|
|
|
game_id,
|
|
|
source_system,
|
|
|
account_type,
|
|
|
- dayN
|
|
|
+ day_n
|
|
|
FROM
|
|
|
game_ads.ads_game_account_dayn
|
|
|
""" + cri);
|
|
|
@@ -1839,7 +1839,7 @@ public class IMediaDataServiceImpl implements IMediaDataService {
|
|
|
parent_game_id as game_id,
|
|
|
source_system,
|
|
|
account_type,
|
|
|
- dayN
|
|
|
+ day_n
|
|
|
FROM
|
|
|
game_ads_parent.ads_game_account_dayn_parent
|
|
|
""" + cri);
|
|
|
@@ -1919,7 +1919,7 @@ public class IMediaDataServiceImpl implements IMediaDataService {
|
|
|
pitcher_id,
|
|
|
source_system,
|
|
|
account_type,
|
|
|
- dayN
|
|
|
+ day_n
|
|
|
FROM
|
|
|
game_ads.ads_game_pitcher_account_dayn
|
|
|
""" + cri);
|
|
|
@@ -1931,7 +1931,7 @@ public class IMediaDataServiceImpl implements IMediaDataService {
|
|
|
pitcher_id,
|
|
|
source_system,
|
|
|
account_type,
|
|
|
- dayN
|
|
|
+ day_n
|
|
|
FROM
|
|
|
game_ads_parent.ads_game_pitcher_account_dayn_parent
|
|
|
""" + cri);
|
|
|
@@ -1989,7 +1989,7 @@ public class IMediaDataServiceImpl implements IMediaDataService {
|
|
|
pitcher_id,
|
|
|
source_system,
|
|
|
account_type,
|
|
|
- dayN
|
|
|
+ day_n
|
|
|
FROM
|
|
|
""" +tableName + cri);
|
|
|
|
|
|
@@ -2049,7 +2049,7 @@ public class IMediaDataServiceImpl implements IMediaDataService {
|
|
|
game_id,
|
|
|
source_system,
|
|
|
account_type,
|
|
|
- dayN
|
|
|
+ day_n
|
|
|
FROM
|
|
|
game_ads.ads_game_account_dayn
|
|
|
""" + cri);
|
|
|
@@ -2060,7 +2060,7 @@ public class IMediaDataServiceImpl implements IMediaDataService {
|
|
|
parent_game_id as game_id,
|
|
|
source_system,
|
|
|
account_type,
|
|
|
- dayN
|
|
|
+ day_n
|
|
|
FROM
|
|
|
game_ads_parent.ads_game_account_dayn_parent
|
|
|
""" + cri);
|
|
|
@@ -2095,7 +2095,7 @@ public class IMediaDataServiceImpl implements IMediaDataService {
|
|
|
private String parseJsonData(AdsGamePitcherAccountDayn adsGamePitcherAccountDayn, String dataStr, PitcherGameMediaDataTotalDTO dto) {
|
|
|
//将每一个adsDaynGame中的dayN属性值 由json转为 Map 型
|
|
|
Gson gson = new Gson();
|
|
|
- Map<String, String> jsonList = gson.fromJson(adsGamePitcherAccountDayn.getDayn(), Map.class);
|
|
|
+ Map<String, String> jsonList = gson.fromJson(adsGamePitcherAccountDayn.getDayN(), Map.class);
|
|
|
//解析 jsonList
|
|
|
for (Map.Entry<String, String> entry : jsonList.entrySet()) {
|
|
|
//key是充值日期
|
|
|
@@ -2129,7 +2129,7 @@ public class IMediaDataServiceImpl implements IMediaDataService {
|
|
|
private String parseJsonDataPitcher(AdsPitcherAccountDayn adsPitcherAccountDayn, String dataStr, PitcherMediaDataTotalDTO dto) {
|
|
|
//将每一个adsDaynGame中的dayN属性值 由json转为 Map 型
|
|
|
Gson gson = new Gson();
|
|
|
- Map<String, String> jsonList = gson.fromJson(adsPitcherAccountDayn.getDayn(), Map.class);
|
|
|
+ Map<String, String> jsonList = gson.fromJson(adsPitcherAccountDayn.getDayN(), Map.class);
|
|
|
//解析 jsonList
|
|
|
for (Map.Entry<String, String> entry : jsonList.entrySet()) {
|
|
|
//key是充值日期
|
|
|
@@ -2163,7 +2163,7 @@ public class IMediaDataServiceImpl implements IMediaDataService {
|
|
|
private String parseJsonDataGame(AdsGameAccountDayn adsGameAccountDayn, String dataStr, GameMediaDataTotalDTO dto) {
|
|
|
//将每一个adsDaynGame中的dayN属性值 由json转为 Map 型
|
|
|
Gson gson = new Gson();
|
|
|
- Map<String, String> jsonList = gson.fromJson(adsGameAccountDayn.getDayn(), Map.class);
|
|
|
+ Map<String, String> jsonList = gson.fromJson(adsGameAccountDayn.getDayN(), Map.class);
|
|
|
//解析 jsonList
|
|
|
for (Map.Entry<String, String> entry : jsonList.entrySet()) {
|
|
|
//key是充值日期
|