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>
|
|
/// 质量GP12统计报表业务模块service接口
|
|
/// </summary>
|
|
public interface IQcGp12ServiceStatisticsService : IBaseService<QcGp12ServiceStatistics>
|
|
{
|
|
/// <summary>
|
|
/// 获取原始数据
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
PagedInfo<QcGp12ServiceStatisticsDto> GetList(QcGp12ServiceStatisticsQueryDto parm);
|
|
|
|
/// <summary>
|
|
/// 获取修正格式后的列表数据
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
List<QcGp12ServiceStatisticsDto> GetReviseList(QcGp12ServiceStatisticsQueryDto parm);
|
|
|
|
QcGp12ServiceStatistics GetInfo(string Id);
|
|
|
|
QcGp12ServiceStatistics AddQcGp12ServiceStatistics(QcGp12ServiceStatistics parm);
|
|
|
|
int UpdateQcGp12ServiceStatistics(QcGp12ServiceStatistics parm);
|
|
|
|
}
|
|
}
|