dengzedong
2024-12-19 85b2001c0ec2f1adc598db3bf47ad457dcca7074
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3
4 import com.iailab.netsdk.lib.NetSDKLib;
5 import com.sun.jna.NativeLong;
6
7 /** 
8 * @author 251823
9 * @description 区域;各边距按整长8192的比例
10 * @date 2022/07/21 15:15:27
11 */
12 public class DH_RECT_REGION extends NetSDKLib.SdkStructure {
13     public NativeLong      left;
14     public NativeLong      top;
15     public NativeLong      right;
16     public NativeLong      bottom;
17 }