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