using Infrastructure.Model; using RIZO.Model.Mes.Dto.WorkOrderInfo; using RIZO.Model.Mes.WorkOrderInfo; namespace RIZO.Service.Mes.IMesService.WorkOrderInfo { /// /// 产品检验记录表service接口 /// public interface IProductInspectionService : IBaseService { PagedInfo GetList(ProductInspectionQueryDto parm); PagedInfo GetListExport(ProductInspectionQueryDto parm); ProductInspection GetInfo(long Id); ApiResult Import(Stream stream, string userId, string userName); ProductInspection AddProductInspection(ProductInspection parm); int UpdateProductInspection(ProductInspection parm); } }