44 lines
1.2 KiB
ObjectPascal
44 lines
1.2 KiB
ObjectPascal
unit plc_addr_info;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
|
|
|
|
type
|
|
// Tplc_addr_info = class(TComponent)
|
|
Tplc_addr_info = class(TPersistent)
|
|
private
|
|
{ Private declarations }
|
|
FMachNum: string;
|
|
FMachName: string;
|
|
FKind: string;
|
|
FName: string;
|
|
FAddress: string;
|
|
FDescriptions: string;
|
|
FIdx: string;
|
|
FIsValid: string;
|
|
|
|
//이전 값을 담아두기 위해..DB 에 영향 없음..
|
|
FPreValue: string; //메모리 속성..
|
|
protected
|
|
{ Protected declarations }
|
|
public
|
|
{ Public declarations }
|
|
property PreValue: string read FPreValue write FPreValue;
|
|
published
|
|
{ Published declarations }
|
|
property MachNum: string read FMachNum write FMachNum;
|
|
property MachName: string read FMachName write FMachName;
|
|
property Kind: string read FKind write FKind;
|
|
property Name: string read FName write FName;
|
|
property Address: string read FAddress write FAddress;
|
|
property Descriptions: string read FDescriptions write FDescriptions;
|
|
property Idx: string read FIdx write FIdx;
|
|
property IsValid: string read FIsValid write FIsValid;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|