Browse Source

Z991239-6139 #comment feat: 修改读卡请求参数类型

Signed-Off-By: commit-hook
刘文涛80174520 7 months ago
parent
commit
4c86f4ccf8

+ 2 - 2
Module/mod_CardIssuerStand/CardIssuerStand.xml

@@ -461,8 +461,8 @@
 				<param name="aid" type="string"/>
 				<!--业务数据-->
 				<param name="businessData" type="string"/>
-				<param name="reserved1" type="int"/>
-				<param name="reserved2" type="string"/>
+				<param name="reserved1" type="array_int"/>
+				<param name="reserved2" type="array_string"/>
 			</req>
 			<res>
 				<!--读磁条结果 0失败 1成功-->

+ 2 - 2
Module/mod_CardIssuerStand/CardIssuerStand_def_g.h

@@ -1019,8 +1019,8 @@ struct CardIssuerStandService_ReadJS_Req
 {
 	CSimpleStringA aid;
 	CSimpleStringA businessData;
-	int reserved1;
-	CSimpleStringA reserved2;
+	CAutoArray<int> reserved1;
+	CAutoArray<CSimpleStringA> reserved2;
 
 	void Serialize(SpBuffer &Buf)
 	{