67 lines
1.9 KiB
ObjectPascal
67 lines
1.9 KiB
ObjectPascal
unit NilmData;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
|
wItem;
|
|
|
|
type
|
|
TNilmData = class(TwItem)
|
|
private
|
|
{ Private declarations }
|
|
Fidx: string;
|
|
FDATE_ID: string;
|
|
FID: string;
|
|
FCHA_PF: string;
|
|
FCHA_VOLT: string;
|
|
FCHA_CUR: string;
|
|
FCHA_Var: string;
|
|
FCHA_Va: string;
|
|
FCHB_PF: string;
|
|
FCHB_VOLT: string;
|
|
FCHB_CUR: string;
|
|
FCHB_Var: string;
|
|
FCHB_Va: string;
|
|
FMPU_AX: string;
|
|
FMPU_AY: string;
|
|
FMPU_AZ: string;
|
|
FMPU_GX: string;
|
|
FMPU_GY: string;
|
|
FMPU_GZ: string;
|
|
FUpdateTime: string;
|
|
protected
|
|
{ Protected declarations }
|
|
public
|
|
{ Public declarations }
|
|
published
|
|
{ Published declarations }
|
|
property idx: string read Fidx write Fidx;
|
|
property DATE_ID: string read FDATE_ID write FDATE_ID;
|
|
property ID: string read FID write FID;
|
|
property CHA_PF: string read FCHA_PF write FCHA_PF;
|
|
property CHA_VOLT: string read FCHA_VOLT write FCHA_VOLT;
|
|
property CHA_CUR: string read FCHA_CUR write FCHA_CUR;
|
|
property CHA_Var: string read FCHA_Var write FCHA_Var;
|
|
property CHA_Va: string read FCHA_Va write FCHA_Va;
|
|
property CHB_PF: string read FCHB_PF write FCHB_PF;
|
|
property CHB_VOLT: string read FCHB_VOLT write FCHB_VOLT;
|
|
property CHB_CUR: string read FCHB_CUR write FCHB_CUR;
|
|
property CHB_Var: string read FCHB_Var write FCHB_Var;
|
|
property CHB_Va: string read FCHB_Va write FCHB_Va;
|
|
property MPU_AX: string read FMPU_AX write FMPU_AX;
|
|
property MPU_AY: string read FMPU_AY write FMPU_AY;
|
|
property MPU_AZ: string read FMPU_AZ write FMPU_AZ;
|
|
property MPU_GX: string read FMPU_GX write FMPU_GX;
|
|
property MPU_GY: string read FMPU_GY write FMPU_GY;
|
|
property MPU_GZ: string read FMPU_GZ write FMPU_GZ;
|
|
property UpdateTime: string read FUpdateTime write FUpdateTime;
|
|
end;
|
|
|
|
implementation
|
|
|
|
|
|
|
|
end.
|
|
|