24 lines
688 B
C#
24 lines
688 B
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 IQcBackEndServiceWorkorderService : IBaseService<QcBackEndServiceWorkorder>
|
|
{
|
|
PagedInfo<QcBackEndServiceWorkorderDto> GetList(QcBackEndServiceWorkorderQueryDto parm);
|
|
|
|
QcBackEndServiceWorkorder GetInfo(string Id);
|
|
|
|
QcBackEndServiceWorkorder AddQcBackEndServiceWorkorder(QcBackEndServiceWorkorder parm);
|
|
|
|
int UpdateQcBackEndServiceWorkorder(QcBackEndServiceWorkorder parm);
|
|
|
|
}
|
|
}
|