unitdm.~pas

来自「仓储系统」· ~PAS 代码 · 共 71 行

~PAS
71
字号
unit UnitDm;

interface

uses
  SysUtils, Classes, DB, ADODB;

type
  TDM = class(TDataModule)
    ADO_C: TADOConnection;
    qry_Kf: TADOQuery;
    qry_Pd: TADOQuery;
    qry_Quality: TADOQuery;
    qry_InOutClass: TADOQuery;
    qry_StockUser: TADOQuery;
    qry_JLUnit: TADOQuery;
    qry_MateBasic: TADOQuery;
    sp_MateBasic: TADOStoredProc;
    qry_CgRk: TADOQuery;
    sp_CgRk: TADOStoredProc;
    qry_Dept: TADOQuery;
    qry_Gys: TADOQuery;
    qry_kw: TADOQuery;
    qry_Customer: TADOQuery;
    sp_CgRkGz: TADOStoredProc;
    qry_CgRkGz: TADOQuery;
    qry_Zz: TADOQuery;
    sp_ZzRk: TADOStoredProc;
    qry_ZzRkGz: TADOQuery;
    sp_ZzRkGz: TADOStoredProc;
    qry_ProductIn: TADOQuery;
    qry_ProductInGz: TADOQuery;
    sp_ProductIn: TADOStoredProc;
    sp_ProductInGz: TADOStoredProc;
    qry_TuiLiao: TADOQuery;
    qry_TuiLiaoGz: TADOQuery;
    sp_TuiLiao: TADOStoredProc;
    sp_TuiLiaoGz: TADOStoredProc;
    qry_ProductOut: TADOQuery;
    qry_ProductOutGz: TADOQuery;
    sp_ProductOut: TADOStoredProc;
    sp_ProductOutGz: TADOStoredProc;
    qry_Ly: TADOQuery;
    qry_LyGz: TADOQuery;
    qry_Bf: TADOQuery;
    qry_BfGz: TADOQuery;
    sp_Ly: TADOStoredProc;
    sp_LyGz: TADOStoredProc;
    sp_Bf: TADOStoredProc;
    sp_BfGz: TADOStoredProc;
    qry_PyPk: TADOQuery;
    sp_PyPk: TADOStoredProc;
    qry_MateClass: TADOQuery;
    qry_PyPkGz: TADOQuery;
    sp_PyPkGz: TADOStoredProc;
    qry_PlanNum: TADOQuery;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  DM: TDM;

implementation

{$R *.dfm}

end.

⌨️ 快捷键说明

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