IReportBase.cs 352 B

12345678910111213141516
  1. using OTSIncAReportApp.OTSSampleReportInfo;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OTSIncAReportApp.OTSDataMgrFunction
  8. {
  9. //报告项目,共用接口类,基类,一起维护这个类,共同使用
  10. public class IReportBase : IReport
  11. {
  12. }
  13. }