CosPlayPlayerService.java
2.23 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
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);
}