24 lines
597 B
C#
24 lines
597 B
C#
using System;
|
|
using DOAN.Model;
|
|
using DOAN.Model.Dto;
|
|
using DOAN.Model.Business;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DOAN.Service.Business.IBusinessService
|
|
{
|
|
/// <summary>
|
|
/// 力矩检测表service接口
|
|
/// </summary>
|
|
public interface IQcTorquedetectionService : IBaseService<QcTorquedetection>
|
|
{
|
|
PagedInfo<QcTorquedetectionDto> GetList(QcTorquedetectionQueryDto parm);
|
|
|
|
QcTorquedetection GetInfo(int Id);
|
|
|
|
QcTorquedetection AddQcTorquedetection(QcTorquedetection parm);
|
|
|
|
int UpdateQcTorquedetection(QcTorquedetection parm);
|
|
|
|
}
|
|
}
|