29 lines
464 B
ObjectPascal
29 lines
464 B
ObjectPascal
unit ProcessMstDetailR;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
|
wRelation;
|
|
|
|
type
|
|
TProcessMstDetailR = class(TwRelation)
|
|
private
|
|
{ Private declarations }
|
|
FRunningNum: string;
|
|
protected
|
|
{ Protected declarations }
|
|
public
|
|
{ Public declarations }
|
|
published
|
|
{ Published declarations }
|
|
property RunningNum: string read FRunningNum write FRunningNum;
|
|
end;
|
|
|
|
implementation
|
|
|
|
|
|
|
|
end.
|
|
|