36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using System;
|
|
using ZR.Model;
|
|
using ZR.Model.Dto;
|
|
using ZR.Model.Business;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ZR.Service.Business.IBusinessService
|
|
{
|
|
/// <summary>
|
|
/// 质量BackEnd统计报表业务模块service接口
|
|
/// </summary>
|
|
public interface IQcBackEndServiceStatisticsService : IBaseService<QcBackEndServiceStatistics>
|
|
{
|
|
/// <summary>
|
|
/// 获取原始数据
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
PagedInfo<QcBackEndServiceStatisticsDto> GetList(QcBackEndServiceStatisticsQueryDto parm);
|
|
|
|
/// <summary>
|
|
/// 获取修正格式后的列表数据
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
List<QcBackEndServiceStatisticsDto> GetReviseList(QcBackEndServiceStatisticsQueryDto parm);
|
|
|
|
QcBackEndServiceStatistics GetInfo(string Id);
|
|
|
|
QcBackEndServiceStatistics AddQcBackEndServiceStatistics(QcBackEndServiceStatistics parm);
|
|
|
|
int UpdateQcBackEndServiceStatistics(QcBackEndServiceStatistics parm);
|
|
|
|
}
|
|
}
|