对卡片的操作记录及结果查询,操作记录包括充值,退款,销卡。

请求URL

POST {域名}/api/vas/card/queryCardGroupOperate

请求参数

加密数据dataContent

序号 域名 变量名 必填 长度 备注
1. 请求流水号 userReqNo C String(128) 订单发起时客户请求的流水号
2. 卡组唯一编号 groupId C String(128) 卡组唯一编号
3. 订单状态 status C int 状态:0待处理 1处理中 2 成功 3失败
4. 订单类型 opType C int 类型:0#开卡1#充值 3#销卡 4#退款
5. 交易起始时间 beginTime C String 格式yyyy-MM-dd
6. 交易结束时间 endTime C String 格式yyyy-MM-dd
7. 当前页数 currentPage M int 正整数
8. 分页大小 pageSize M int 最大50

dataContent示例

{
  "beginTime": "2024-03-18",
  "currentPage": "1",
  "endTime": "2024-03-28",
  "groupId": "",
  "opType": "",
  "pageSize": "20",
  "status": "",
  "userReqNo": ""
}

响应参数

结果信息result

序号 域名 变量名 必填 长度 备注
01. 总条数 totalCount M String
02. 当前页数 currentPage M Number
03. 分页大小 pageSize M Number
04. 订单记录 list O List<Object>

Object:

序号 域名 变量名 必填 长度 备注
1. 服务系统返回的单号 orderId M String 订单唯一订单号
2. 卡组编号 groupId M String 卡组唯一编号
3. 请求流水号 userReqNo M String 客户上送的流水号
4. 订单类型 opType M int 同传入参数说明
5. 类型描述 opTypeDesc String 0开卡 1充值 3注销 4退款
6. 订单状态 status M int 同传入参数
7. 状态描述 statusDesc M String 状态描述
8. 订单金额 amount M Number 订单上送的金额
9. 手续费 fee M Number 订单对应的手续费
10. 创建时间 createAt M String 创建的时间,格式yyyy-MM-dd HH :mm:ss

result示例

{
  "currentPage": 1,
  "list": [
    {
      "amount": 1000,
      "createAt": "2024-04-28 23:14:04",
      "fee": 0,
      "groupId": "2404282314000000647",
      "opType": 0,
      "opTypeDesc": "开卡",
      "orderId": "2404282314000216553",
      "status": 2,
      "statusDesc": "成功",
      "userReqNo": "20240428231404SN7166481202"
    },
    {
      "amount": 13,
      "createAt": "2024-04-25 22:23:07",
      "fee": 0,
      "groupId": "2404252223000000643",
      "opType": 0,
      "opTypeDesc": "开卡",
      "orderId": "2404252223000216341",
      "status": 2,
      "statusDesc": "成功",
      "userReqNo": "20240425222308SN7955893440"
    },
    {
      "amount": 1000,
      "createAt": "2024-04-16 23:26:58",
      "fee": 0,
      "groupId": "2404162326000000638",
      "opType": 0,
      "opTypeDesc": "开卡",
      "orderId": "2404162326000214070",
      "status": 2,
      "statusDesc": "成功",
      "userReqNo": "20240416232657SN0721481219"
    },
    {
      "amount": 1000,
      "createAt": "2024-04-16 23:26:33",
      "fee": 0,
      "groupId": "2404162326000000637",
      "opType": 0,
      "opTypeDesc": "开卡",
      "orderId": "2404162326000214068",
      "status": 2,
      "statusDesc": "成功",
      "userReqNo": "20240416232627SN1430069283"
    },
    {
      "amount": 1000,
      "createAt": "2024-04-16 22:11:57",
      "fee": 0,
      "groupId": "2404162211000000636",
      "opType": 0,
      "opTypeDesc": "开卡",
      "orderId": "2404162211000214062",
      "status": 2,
      "statusDesc": "成功",
      "userReqNo": "20240416221156SN1679215487"
    },
    {
      "amount": 1000,
      "createAt": "2024-04-16 21:01:20",
      "fee": 0,
      "groupId": "2404162101000000635",
      "opType": 0,
      "opTypeDesc": "开卡",
      "orderId": "2404162101000214060",
      "status": 2,
      "statusDesc": "成功",
      "userReqNo": "20240416210117SN5034396497"
    },
    {
      "amount": 1000,
      "createAt": "2024-04-16 20:07:15",
      "fee": 0,
      "groupId": "2404162007000000634",
      "opType": 0,
      "opTypeDesc": "开卡",
      "orderId": "2404162007000214053",
      "status": 2,
      "statusDesc": "成功",
      "userReqNo": "20240416200713SN6831212105"
    },
    {
      "amount": 1000,
      "createAt": "2024-03-19 11:04:03",
      "fee": 0,
      "groupId": "2403191104000000622",
      "opType": 0,
      "opTypeDesc": "开卡",
      "orderId": "2403191104000181556",
      "status": 2,
      "statusDesc": "成功",
      "userReqNo": "20240319110402SN1583428148"
    }
  ],
  "pageSize": 20,
  "totalCount": "8",
  "userNo": "5181200731000138828"
}