38 lines
918 B
ObjectPascal
38 lines
918 B
ObjectPascal
unit plc_tmp_data;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
|
|
|
|
type
|
|
// Tplc_tmp_data = class(TComponent)
|
|
Tplc_tmp_data = class(TPersistent)
|
|
private
|
|
{ Private declarations }
|
|
FKind: string;
|
|
FCreateDate: string;
|
|
FCreateTime: string;
|
|
FTM: string;
|
|
FIdx: string;
|
|
FAddress: string;
|
|
protected
|
|
{ Protected declarations }
|
|
//이전 값을 담아두기 위해..DB 에 영향 없음..
|
|
FPreValue: string;
|
|
public
|
|
{ Public declarations }
|
|
published
|
|
{ Published declarations }
|
|
property Kind: string read FKind write FKind;
|
|
property CreateDate: string read FCreateDate write FCreateDate;
|
|
property CreateTime: string read FCreateTime write FCreateTime;
|
|
property TM: string read FTM write FTM;
|
|
property Idx: string read FIdx write FIdx;
|
|
property Address: string read FAddress write FAddress;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|