流接口

流接口

/// <author>cxg 2020-8-8</author>
/// 流接口

unit streamIntf;

interface

uses
  Classes, SysUtils;

type
  IStreamIntf = interface
    function qrySql(const accountNo, sql: string): TStream;
    function save(const accountNo, tableName: string; delta: TStream): Boolean;
    function downFile(const fileName: string): TStream;
    function upFile(Stream: TStream): Boolean;
  end;

implementation

end.

  

posted @ 2020-08-08 14:37  delphi中间件  阅读(268)  评论(0编辑  收藏  举报