houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description 接口 CLIENT_StartFindDetailNumberStatCluster 的输入参数
8  * @date 2022/10/09 14:06:13
9  */
10 public class NET_IN_START_FIND_DETAIL_CLUSTER extends NetSDKLib.SdkStructure {
11     /**
12      * 此结构体大小,必须赋值
13      */
14     public int dwSize;
15     /**
16      * 查询条件
17      */
18     public NET_CLUSTER_DETAIL_CONDITION stuCondition = new NET_CLUSTER_DETAIL_CONDITION();
19
20     public NET_IN_START_FIND_DETAIL_CLUSTER() {
21         this.dwSize = this.size();
22     }
23 }