123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- #ifndef MICROSERVICES_API_MANAGE_LIST_HEADER_
- #define MICROSERVICES_API_MANAGE_LIST_HEADER_
- #include "api_comm.h"
- #include <string>
- namespace MicroServices
- {
- namespace API
- {
- namespace Manage
- {
- /*
- {
- "request": "http://rvcterminal.paasst.cmbchina.cn/api/manage/regist/full/list?terminalNo=7555980103",
- "success": true,
- "errorCode": "10000",
- "message": "请求成功",
- "returnCode": "SUC0000",
- "errorMsg": "请求成功",
- "total": 1,
- "page": 1,
- "pageSize": 20,
- "data": [
- {
- "terminalNo": "7555980103",
- "branchNo": "755",
- "machineNo": "2021092215115721",
- "deviceNo": "D06255",
- "businessStructID": "1BFEB05100000000",
- "businessStructInfo": {
- "commonName": "ShenZhenFenHangYingYeBu",
- "editor": null,
- "globalName": "CMB.ShenZhenFenHang.ShenZhenFenHangYingYeBu",
- "expTime": null,
- "description": null,
- "nodeType": "B",
- "parentId": "17A2113A0000000A",
- "bDisplay": true,
- "structId": "1BFEB05100000000",
- "nLayer": 3,
- "topStruct": false,
- "structName": "深圳分行营业部",
- "structType": "201",
- "structFullName": "招商银行/深圳分行/深圳分行营业部",
- "bActive": true,
- "branchNo": "755598"
- },
- "structID": "1BFEB05100000000",
- "structInfo": null,
- "initIP": "99.12.22.197",
- "machineType": "RVC.Stand2S",
- "machineVersion": "5.0",
- "sites": "CMB.LIB",
- "outletNo": "755598",
- "grooveCount": 1,
- "line": "RVC_Branch_MarketingDeviceManage",
- "lineDes": "市场条线",
- "state": "1",
- "stateName": "正常",
- "workFlowState": null,
- "remark": "1",
- "pinPadId": "cw_1902BB2104258467",
- "padDeviceId": "cw_00000000",
- "oldMachineNo": null,
- "enrolGPS": "0000000000000000",
- "enrolAddr": null,
- "createTime": "2021-09-22 15:11:26.967",
- "editor": "SP07550003",
- "editTime": "2021-12-14 17:17:26.203",
- "initializer": "SP80278003",
- "terminalStage": "A",
- "runState": " ",
- "installChanged": "2022-02-24 10:19:00.0",
- "lastShakeTime": "2022-02-24 14:51:49.0",
- "currentIP": "0.0.0.0",
- "installVersion": "0000000200000000",
- "deviceID": "26B12F0B00004A5A",
- "manufactureID": "26B0EA9300004A5A",
- "manufacturerName": null,
- "batchNo": "20210415",
- "enterID": "SP01250002",
- "enterTime": "2021-09-22 15:11:00.0",
- "machineManager": null,
- "result": null,
- "checkTable": null,
- "checkTableName": null,
- "infoState": "1",
- "infoStateName": "已注册",
- "deviceTye": "有效型号大机"
- }
- ]
- }
- */
- struct RegistDetailInfo
- {
- std::string branchNo;
- std::string deviceNo;
- std::string initIP;
- std::string machineNo;
- std::string machineType;
- std::string machineVersion;
- std::string sites;
- std::string terminalNo;
- std::string manufactureID;
- std::string manufacturerName;
- std::string deviceTye;
- };
- }
- }
- }
- #endif //MICROSERVICES_API_MANAGE_LIST_HEADER_
|