|
@@ -318,8 +318,8 @@ public class AdsOrderDetailService implements IAdsOrderDetailService {
|
|
|
g.classify , -- 玩家注册游戏类型
|
|
|
a.cp_id , -- CPID
|
|
|
e.cp_name ,-- cp名
|
|
|
- c.pitcher_id as zx_pitcher_id, -- 投手ID
|
|
|
- d.zx_pitcher_name , -- 投手名
|
|
|
+ IFNULL(c.pitcher_id, 0) as zx_pitcher_id, -- 投手ID
|
|
|
+ IFNULL(d.zx_pitcher_name, '自然量') as zx_pitcher_name, -- 投手名
|
|
|
a.game_id as order_game_id, -- 玩家充值游戏ID
|
|
|
f.game_name as order_game_name,-- 玩家充值游戏名
|
|
|
f.classify as order_game_classify,-- 玩家充值游戏类型
|
|
@@ -397,8 +397,8 @@ public class AdsOrderDetailService implements IAdsOrderDetailService {
|
|
|
g.classify , -- 玩家注册游戏类型
|
|
|
a.cp_id , -- CPID
|
|
|
e.cp_name ,-- cp名
|
|
|
- c.pitcher_id as zx_pitcher_id, -- 投手ID
|
|
|
- d.zx_pitcher_name , -- 投手名
|
|
|
+ IFNULL(c.pitcher_id, 0) as zx_pitcher_id, -- 投手ID
|
|
|
+ IFNULL(d.zx_pitcher_name, '自然量') as zx_pitcher_name, -- 投手名
|
|
|
a.game_id as order_game_id, -- 玩家充值游戏ID
|
|
|
f.game_name as order_game_name,-- 玩家充值游戏名
|
|
|
f.classify as order_game_classify,-- 玩家充值游戏类型
|
|
@@ -477,8 +477,8 @@ public class AdsOrderDetailService implements IAdsOrderDetailService {
|
|
|
g.classify , -- 玩家注册游戏类型
|
|
|
a.cp_id , -- CPID
|
|
|
e.cp_name ,-- cp名
|
|
|
- c.pitcher_id as zx_pitcher_id, -- 投手ID
|
|
|
- d.zx_pitcher_name , -- 投手名
|
|
|
+ IFNULL(c.pitcher_id, 0) as zx_pitcher_id, -- 投手ID
|
|
|
+ IFNULL(d.zx_pitcher_name, '自然量') as zx_pitcher_name, -- 投手名
|
|
|
a.game_id as order_game_id, -- 玩家充值游戏ID
|
|
|
f.game_name as order_game_name,-- 玩家充值游戏名
|
|
|
f.classify as order_game_classify,-- 玩家充值游戏类型
|