文档
测试

注单查询

POST
queryBetRecordList

请求参数

参数名
类型
描述
必填
Host
String
api地址
必填
Md5Key
String
md5值
必填
AesKey
String
aes值设置
必填
MerchantCode
String
商户code
必填
GameTypeEnum
GameTypeEnum.KYQP
必填
Timestamp
Long
时间戳
必填
StartTime
Long
开始时间
必填
EndTime
Long
结束时间
必填

响应参数

参数名
类型
描述
必填
code
int
状态码
必填
message
String
信息
必填
TotalRecord
int
数据量
必填
Record
数组
游戏记录
必填
kyqpProp
kyqp专有属性
必填
GameID
string
遊戲 id
必填
Accounts
string
玩家
必填
ServerID
int
游戏房间代号
必填
KindID
int
游戏代号
必填
TableID
int
桌號
必填
ChairID
int
座位號
必填
UserCount
int
同房玩家數
必填
CellScore
string
有效投注金額
必填
AllBet
string
總投注額
必填
Profit
string
输赢金额
必填
Revenue
string
反水金额
必填
GameStartTime
string
開始時間
必填
GameEndTime
string
結束時間
必填
CardValue
string
牌局原始资料
必填
ChannelID
int
代理商编号
必填
LineCode
string
LineCode
必填
RecordID
int
注單號碼
必填
CurScore
string
进入游戏初始金额
必填
gameType
string
游戏类
必填

说明 / 示例

```language @Test public void test() { var createReq = new QueryBetRecordListReq(); createReq.Host = wagerHost; createReq.Md5Key = md5Key; createReq.AesKey = aesKey; createReq.MerchantCode = merchantCode; createReq.GameTypeEnum = GameTypeEnum.KYQP; createReq.Timestamp = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds(); createReq.StartTime = "1694403030000L"; createReq.EndTime = "1694403299000L"; var resp = new GameService().QueryBetRecordList(createReq); } ```