Jay
2024-11-01 03e8aca3ad6201c0d74e00d4c8d7367cdaaa54f9
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 291189
7  * @version 1.0
8  * @description 预置点的坐标和放大倍数
9  * @date 2022/2/16 9:33
10  */
11 public class NET_PRESET_POSITION extends NetSDKLib.SdkStructure{
12     public    int                    nHorizontal;                        // 水平坐标
13     public  int                    nVertical;                            // 垂直坐标
14     public  int                    nMagnification;                        // 放大倍数
15
16 }
17