1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #ifndef MICROSERVICES_API_MANAGE_REGIST_HEADER_
- #define MICROSERVICES_API_MANAGE_REGIST_HEADER_
- #include "api_comm.h"
- #include <string>
- namespace MicroServices
- {
- namespace API
- {
- namespace Manage
- {
- /*
- {
- "data": {
- "branchNo": "755",
- "businessStructID" : "1BFEB05100000000",
- "businessStructInfo" : {
- "bActive": true,
- "bDisplay" : true,
- "branchNo" : "755598",
- "commonName" : "ShenZhenFenHangYingYeBu",
- "description" : null,
- "editor" : null,
- "expTime" : null,
- "globalName" : "CMB.ShenZhenFenHang.ShenZhenFenHangYingYeBu",
- "nLayer" : 3,
- "nodeType" : "B",
- "parentId" : "17A2113A0000000A",
- "structFullName" : "招商银行/深圳分行/深圳分行营业部",
- "structId" : "1BFEB05100000000",
- "structName" : "深圳分行营业部",
- "structType" : "102",
- "topStruct" : false
- },
- "deviceNo": "D06255",
- "grooveCount" : 1,
- "initIP" : "99.12.22.197",
- "line" : "RVC_Branch_MarketingDeviceManage",
- "lineDes" : "市场条线",
- "machineNo" : "2021092215115721",
- "machineType" : "RVC.Stand2S",
- "machineVersion" : "5.0",
- "outletNo" : "755598",
- "padDeviceId" : "cw_00000000",
- "pinPadId" : "cw_1902BB2104258467",
- "remark" : "1",
- "sites" : "CMB.LIB",
- "state" : "1",
- "stateName" : "正常",
- "structID" : "1BFEB05100000000",
- "structInfo" : null,
- "terminalNo" : "7555980103",
- "workFlowState" : null
- },
- "errorCode": "10000",
- "errorMsg" : "获取成功",
- "message" : "获取成功",
- "page" : 0,
- "pageSize" : 0,
- "request" : "http://rvcterminal.paasst.cmbchina.cn/api/manage/regist/7555980103",
- "returnCode" : "SUC0000",
- "success" : true,
- "total" : 0
- }
- */
- struct RegistInfo
- {
- std::string branchNo;
- std::string deviceNo;
- std::string initIP;
- std::string machineNo;
- std::string machineType;
- std::string machineVersion;
- std::string sites;
- std::string terminalNo;
- };
- }
- }
- }
- #endif //MICROSERVICES_API_MANAGE_REGIST_HEADER_
|