提交 | 用户 | 时间
|
ce910c
|
1 |
package com.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.netsdk.lib.NetSDKLib; |
|
4 |
import com.netsdk.lib.enumeration.EM_PARKINGSPACE_STATE; |
|
5 |
|
|
6 |
/** |
|
7 |
* 设置停车车位状态 入参 |
|
8 |
* 接口 {@link NetSDKLib#CLIENT_SetParkingSpaceState} |
|
9 |
* 出参 {@link NET_OUT_SET_PARKINGSPACE_STATE_INFO} |
|
10 |
* |
|
11 |
* @author 47040 |
|
12 |
* @since Created in 2020/11/18 13:32 |
|
13 |
*/ |
|
14 |
public class NET_IN_SET_PARKINGSPACE_STATE_INFO extends NetSDKLib.SdkStructure { |
|
15 |
/** |
|
16 |
* 结构体大小 |
|
17 |
*/ |
|
18 |
public int dwSize; |
|
19 |
/** |
|
20 |
* 通道号 |
|
21 |
*/ |
|
22 |
public int nChannel; |
|
23 |
/** |
|
24 |
* 车牌号码 |
|
25 |
*/ |
|
26 |
public byte[] szPlateNumber = new byte[64]; |
|
27 |
/** |
|
28 |
* 车位号 |
|
29 |
*/ |
|
30 |
public byte[] szParkingNo = new byte[32]; |
|
31 |
/** |
|
32 |
* 车位状态 {@link EM_PARKINGSPACE_STATE} |
|
33 |
*/ |
|
34 |
public int emState; |
|
35 |
/** |
|
36 |
* 是否需要图片 0 不需要 1 需要 |
|
37 |
*/ |
|
38 |
public int bUnNeedPic; |
|
39 |
|
|
40 |
public NET_IN_SET_PARKINGSPACE_STATE_INFO() { |
|
41 |
dwSize = this.size(); |
|
42 |
} |
|
43 |
} |