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

}