Blame view

src/main/java/com/pipi/qa/service/CosPlayPlayerService.java 3.86 KB
dennis.dong committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
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);

donghu committed
17
	public JSONObject login(String mobile);
dennis.dong committed
18

donghu committed
19
	public JSONObject SubmitAuthentication(String token,String userId);
dennis.dong committed
20

donghu committed
21
	public String getAdminToken();
dennis.dong committed
22

donghu committed
23
	public JSONObject saveUserInfo(String token, String userId);
dennis.dong committed
24
	
donghu committed
25
	public JSONObject send(String roomNo,String productId, String amount, String userIds);
dennis.dong committed
26

donghu committed
27
	public JSONObject giftList();
dennis.dong committed
28

donghu committed
29
	public JSONObject moneyDetailsSave(String mobile, long money);
dennis.dong committed
30

donghu committed
31
	public JSONObject activityList();
dennis.dong committed
32

donghu committed
33
	public JSONObject lotteryActivity(String mobile,String roomNo, String activityId, String times);
dennis.dong committed
34

donghu committed
35
	public JSONObject saveInfoTech(String token, String userId, String categoryId, String techLevelId);
dennis.dong committed
36

donghu committed
37
	public JSONObject guildCreate(String mobile, long openStatus, long guildBiz);
dennis.dong committed
38

donghu committed
39
	public JSONObject guildList(Map<String, Object> adminHeaders, String guildCode);
dennis.dong committed
40

donghu committed
41
	public JSONObject roomSave(String mobile, String roomName, long roomType, long roomCategoryId);
dennis.dong committed
42

donghu committed
43
	public JSONObject userList(String mobile);
dennis.dong committed
44

donghu committed
45
	public JSONObject guildCenter(String mobile,String queryStr);
dennis.dong committed
46

donghu committed
47
	public long guildSearch(String mobile, String queryStr);
dennis.dong committed
48

donghu committed
49
	public JSONObject applyList(String mobile);
dennis.dong committed
50

donghu committed
51
	public JSONObject handleApply(String mobile, long applyId);
dennis.dong committed
52
	
donghu committed
53
	public JSONObject auditGuild(String mobile, String queryStr);
dennis.dong committed
54

donghu committed
55
	public JSONObject roomList(String mobile);
56
	
donghu committed
57 58 59 60 61 62 63
	public JSONObject remove(String userMobile);

	public JSONObject virtualMoneyModify(String mobile, long money);

	public String getUserMobileToken(String mobile);

	public String getPlayMobileToken(String mobile);
donghu committed
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
	
	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);
donghu committed
84

donghu committed
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
	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();

donghu committed
105 106
	public JSONObject sendPipibi(String toUserId, String giftProductId, String amount);

donghu committed
107 108 109 110
	public JSONObject orderProduct();
	
	public JSONObject orderList();

111
	public JSONObject bSend(String roomno, String backpackId, String string, String userId);
donghu committed
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
	
	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);
144

donghu committed
145 146 147 148 149 150 151 152 153 154 155 156 157 158
	public JSONObject auditText(String roomno);

	public JSONObject versionConfig();

	public JSONObject Menu();

	public JSONObject banner();

	public JSONObject typeList();

	public JSONObject wallet();

	public JSONObject progress();

donghu committed
159 160 161 162 163 164 165 166
	public JSONObject getSessionkey();

	public JSONObject orderSubmit();

	public JSONObject getCategory(String roomno);

	public JSONObject saveAttention();

dennis.dong committed
167
}