1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| package com.iailab.netsdk.lib.structure;
|
| import com.iailab.netsdk.lib.NetSDKLib;
|
|
| /**
| *
| *
| * @author : 260611
| * @since : Created in 2021/10/19 19:35
| */
| public class NET_RECT extends NetSDKLib.SdkStructure {
|
| /**
| * int nLeft;
| */
| public int nLeft;
| /**
| * int nTop;
| */
| public int nTop;
| /**
| * int nRight;
| */
| public int nRight;
| /**
| * int nBottom;
| */
| public int nBottom;
|
| @Override
| public String toString() {
| return "NET_RECT{" +
| "nLeft=" + nLeft +
| ", nTop=" + nTop +
| ", nRight=" + nRight +
| ", nBottom=" + nBottom +
| '}';
| }
| }
|
|