using System; using ZR.Model; using ZR.Model.Dto; using ZR.Model.Business; using System.Collections.Generic; namespace ZR.Service.Business.IBusinessService { /// /// 质量BackEnd工单业务模块service接口 /// public interface IQcBackEndServiceWorkorderService : IBaseService { PagedInfo GetList(QcBackEndServiceWorkorderQueryDto parm); QcBackEndServiceWorkorder GetInfo(string Id); QcBackEndServiceWorkorder AddQcBackEndServiceWorkorder(QcBackEndServiceWorkorder parm); int UpdateQcBackEndServiceWorkorder(QcBackEndServiceWorkorder parm); } }