CosPlayPlayerService.java
3.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package com.pipi.qa.service;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.alibaba.fastjson.JSONObject;
/**
* Created by dennis.dong on 2021/05/19.
*/
public interface CosPlayPlayerService {
public Logger logger = LoggerFactory.getLogger(CosPlayPlayerService.class);
public JSONObject login(String mobile);
public JSONObject SubmitAuthentication(String token,String userId);
public String getAdminToken();
public JSONObject saveUserInfo(String token, String userId);
public JSONObject send(String roomNo,String productId, String amount, String userIds);
public JSONObject giftList();
public JSONObject moneyDetailsSave(String mobile, long money);
public JSONObject activityList();
public JSONObject lotteryActivity(String mobile,String roomNo, String activityId, String times);
public JSONObject saveInfoTech(String token, String userId, String categoryId, String techLevelId);
public JSONObject guildCreate(String mobile, long openStatus, long guildBiz);
public JSONObject guildList(Map<String, Object> adminHeaders, String guildCode);
public JSONObject roomSave(String mobile, String roomName, long roomType, long roomCategoryId);
public JSONObject userList(String mobile);
public JSONObject guildCenter(String mobile,String queryStr);
public long guildSearch(String mobile, String queryStr);
public JSONObject applyList(String mobile);
public JSONObject handleApply(String mobile, long applyId);
public JSONObject auditGuild(String mobile, String queryStr);
public JSONObject roomList(String mobile);
public JSONObject remove(String userMobile);
public JSONObject virtualMoneyModify(String mobile, long money);
public String getUserMobileToken(String mobile);
public String getPlayMobileToken(String mobile);
public JSONObject upList(String userMobile,String roomCategoryId, String type);
public JSONObject upSize(String userMobile,String roomCategoryId, String type);
/**
* 搜索公会列表
* @param env
* @param mobile
* @return
*/
public JSONObject guildSearchList(String mobile, String queryStr);
/**
* 根据手机号获取userId、公会信息
* @param env
* @param mobile
* @return
*/
public JSONObject userListCheck(String mobile);
public JSONObject getUserBalance();
public JSONObject getUserSimple(String mobile);
public JSONObject getUserSimple2(String mobile);
public JSONObject getHome();
public JSONObject userGet();
public JSONObject getMine();
public JSONObject managerList();
public JSONObject roomRecord();
public JSONObject recordExport();
public JSONObject delete();
public JSONObject sendPipibi(String toUserId, String giftProductId, String amount);
public JSONObject orderProduct();
public JSONObject orderList();
public JSONObject bSend(String roomno, String backpackId, String string, String userId);
public JSONObject RecentAuditionDetails(String roomNo);
public JSONObject dictGet();
public JSONObject micAll(String roomNo);
public JSONObject playeeCenter();
public JSONObject dynamicGet();
public JSONObject backpackGift();
public JSONObject roomEnter(String roomno);
public JSONObject giftProductList();
public JSONObject virtualProductList(String roomno);
public JSONObject productList();
public JSONObject operations();
public JSONObject giftBoxSend(String roomno);
public JSONObject State(String roomno);
public JSONObject roomMicAll();
public JSONObject holdUp(String roomno);
public JSONObject holdStatus(String roomno);
}