资源简介

智慧工厂,自动化设备,MES,工厂自己开发的MES,可部分参考,行业不一样,资源喜欢共享

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.xml;
using Report.Model;
using System.ComponentModel;

namespace Report.IDAL
{
    /// 
    /// 报表数据库操作接口
    /// 

    public interface IDALReport
    {
        /// 
        /// 分类
        /// 

        Category getCategory(decimal id);
        void addCategory(Category category);
        void updateCategory(Category category);
        void deleteCategory(decimal id);
        List getCategories();
        List getCategories(decimal id);
        /// 
        /// 自定义函数
        /// 

        CustomFunc getCustomFunc(decimal id);
        void addCustomFunc(CustomFunc customFunc);
        void updateCustomFunc(CustomFunc customFunc);
        void deleteCustomFunc(decimal id);
        BindingList getCustomFuncs();
        /// 
        /// 报表
        /// 

        Report.Model.Report getReport(decimal id);
        void addReport(Report.Model.Report report);
        void updateReport(Report.Model.Report report);
        void deleteReport(decimal id);
        void releaseReport(decimal id);
        void debugReport(decimal id);
        List getReportsByCategory(decimal id);
        List getReleaseReportsByCategory(decimal id);
        /// 
        /// 报表数据
        /// 

        ReportData getReportData(decimal id);
        void addReportData(ReportData reportData);
        void updateReportData(ReportData reportData);
        void deleteReportData(decimal id);
        ReportData getReportData(decimal rid string area);
        List getReportDataByReportID(decimal rid);
        List getReportDataByType(decimal rid string area string type);
        /// 
        /// 报表历史
        /// 

        ReportHistory getReportHistory(decimal id);
        void addReportHistory(ReportHistory reportHistory);
        void updateReportHistory(ReportHistory reportHistory);
        void deleteReportHistory(decimal id);
        List getReportHistorys(decimal rid);
        /// 
        /// 表格数据
        /// 

        void addCellValues(List cellValues);
        CellValue getCellValue(CellValue cellValue);
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      16896  2015-06-03 16:59  Report.Utility\bin\Debug\Report.Model.dll

     文件      91648  2015-06-03 16:59  Report.Utility\bin\Debug\Report.Model.pdb

     文件        137  2015-06-03 16:59  Report.Utility\bin\Debug\Report.Model.xml

     文件      17920  2015-06-03 16:59  Report.Utility\bin\Debug\Report.Utility.dll

     文件      30208  2015-06-03 16:59  Report.Utility\bin\Debug\Report.Utility.pdb

     文件       4276  2015-06-03 16:59  Report.Utility\bin\Debug\Report.Utility.xml

     文件        690  2015-06-03 16:59  Report.Utility\obj\Debug\Report.Utility.csproj.FileListAbsolute.txt

     文件      17920  2015-06-03 16:59  Report.Utility\obj\Debug\Report.Utility.dll

     文件      30208  2015-06-03 16:59  Report.Utility\obj\Debug\Report.Utility.pdb

     文件       3831  2015-06-03 16:59  Report.Utility\obj\Debug\ResolveAssemblyReference.cache

     文件       1341  2009-12-28 22:42  Report.Utility\Properties\AssemblyInfo.cs

     文件       2550  2008-05-30 09:37  Report.Utility\Report.Utility.csproj

     文件        419  2008-02-15 18:06  Report.Utility\Utility.cd

     文件      33113  2009-12-12 14:55  Report.Utility\Utility.cs

     文件    1179648  2008-02-29 11:34  Report.Web\bin\AjaxControlToolkit.dll

     文件      11264  2009-12-30 23:03  Report.Web\bin\DBUtility.dll

     文件     186688  2002-02-26 23:58  Report.Web\bin\Microsoft.Web.UI.WebControls.dll

     文件      11776  2015-06-03 16:59  Report.Web\bin\Report.BLL.dll

     文件      38400  2015-06-03 16:59  Report.Web\bin\Report.BLL.pdb

     文件       2490  2015-06-03 16:59  Report.Web\bin\Report.BLL.xml

     文件      58880  2015-06-03 16:59  Report.Web\bin\Report.DAL.dll

     文件      65024  2015-06-03 16:59  Report.Web\bin\Report.DAL.pdb

     文件       3496  2015-06-03 16:59  Report.Web\bin\Report.DAL.xml

     文件       4608  2015-06-03 16:59  Report.Web\bin\Report.DALFactory.dll

     文件      11776  2015-06-03 16:59  Report.Web\bin\Report.DALFactory.pdb

     文件        932  2015-06-03 16:59  Report.Web\bin\Report.DALFactory.xml

     文件       8704  2015-06-03 16:59  Report.Web\bin\Report.DALSQLServer.dll

     文件      36352  2015-06-03 16:59  Report.Web\bin\Report.DALSQLServer.pdb

     文件       1947  2015-06-03 16:59  Report.Web\bin\Report.DALSQLServer.xml

     文件       7680  2015-06-03 16:59  Report.Web\bin\Report.IDAL.dll

............此处省略483个文件信息

评论

共有 条评论