提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
|
|
4 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
5 |
|
|
6 |
/** |
|
7 |
* @author 291189 |
|
8 |
* @description CLIENT_SetConsumeResult 输入结构体 |
|
9 |
* @date 2022/03/07 17:36:06 |
|
10 |
*/ |
|
11 |
public class NET_IN_SET_CONSUME_RESULT extends NetSDKLib.SdkStructure { |
|
12 |
/** |
|
13 |
结构体大小 |
|
14 |
*/ |
|
15 |
public int dwSize; |
|
16 |
/** |
|
17 |
通道号 |
|
18 |
*/ |
|
19 |
public int nChannelID; |
|
20 |
/** |
|
21 |
用户ID |
|
22 |
*/ |
|
23 |
public byte[] szUserID=new byte[32]; |
|
24 |
/** |
|
25 |
消费后余额,如果消费失败则是消费前余额,单位分。 |
|
26 |
*/ |
|
27 |
public int nRemainAmount; |
|
28 |
/** |
|
29 |
消费成功与否 |
|
30 |
*/ |
|
31 |
public int bConsumeResult; |
|
32 |
/** |
|
33 |
错误码 |
|
34 |
*/ |
|
35 |
public int nErrorCode; |
|
36 |
/** |
|
37 |
平台固定消费金额,单位(分) |
|
38 |
*/ |
|
39 |
public int nConsumptionAmount; |
|
40 |
/** |
|
41 |
是否是超额消费 |
|
42 |
*/ |
|
43 |
public int bExcessConsumption; |
|
44 |
/** |
|
45 |
剩余消费次数,-1表示不限制消费次数,0以上(包括0)表示剩余消费次数 |
|
46 |
*/ |
|
47 |
public int nRemainingTimes; |
|
48 |
/** |
|
49 |
消费流水号 |
|
50 |
*/ |
|
51 |
public byte[] szTransactionSerialNumber=new byte[128]; |
|
52 |
|
|
53 |
public NET_IN_SET_CONSUME_RESULT(){ |
|
54 |
this.dwSize=this.size(); |
|
55 |
} |
|
56 |
} |