SmartFactory_NEOL/SOURCE/Agent,Kiosk/Lib/base/WeeklyPlan.pas
2026-09-04 14:08:41 +09:00

33 lines
596 B
ObjectPascal

unit WeeklyPlan;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
wItem;
type
TWeeklyPlan = class(TwItem)
private
{ Private declarations }
FOrdNum: string;
FThisWeek: string;
FNextWeek: string;
protected
{ Protected declarations }
public
{ Public declarations }
published
{ Published declarations }
property OrdNum: string read FOrdNum write FOrdNum;
property ThisWeek: string read FThisWeek write FThisWeek;
property NextWeek: string read FNextWeek write FNextWeek;
end;
implementation
end.