configobjectunit.pas

来自「华海成本核算辅助系统是基于用友U8企业资源管理系统开发的一套半成品成本统计分析软」· PAS 代码 · 共 24 行

PAS
24
字号
unit ConfigObjectUnit;

interface
uses
  Classes ;

type
  TConfig = class(TObject )
  private
    FPath : string ;
    FBeginDate : String ;
    FEndDate : string ;
    FDepreValue : Double  ;
  published
    property Path : String  read FPath write FPath;
    property BeginDate : String  read FBeginDate write FBeginDate;
    property EndDate : string   read FEndDate write FEndDate;
    property DepreValue : Double  read FDepreValue write FDepreValue;
  end;

implementation

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?