Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
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
package com.iailab.netsdk.lib.structure;
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/**
 * @author 47081
 * @version 1.0
 * @description
 * \if ENGLISH_LANG
 * solarcell system history info
 * \else
 * 太阳能系统历史数据信息
 * \endif
 * @date 2020/8/11
 */
public class SOLARCELL_SYSTEM_HISTORY_INFO extends NetSDKLib.SdkStructure {
 
    /**
     * 系统运行时间(单位:天)
     */
    public int nSystemTotalRunDay;
    /**
     * 蓄电池总过放次数
     */
    public int nBatteryOverDischargeCount;
    /**
     * 蓄电池总充满电次数
     */
    public int nBatteryTotalChargeCount;
    /**
     * 保留字节
     */
    public byte[] byReserved = new byte[252];
 
}