| using System; | 
| using System.Collections.Generic; | 
| using System.Linq; | 
| using System.Text; | 
| using System.Threading.Tasks; | 
| using WIDESEA_Core; | 
| using WIDESEA_Core.BaseServices; | 
| using WIDESEA_Model.Models; | 
|   | 
| namespace WIDESEA_ICheckService | 
| { | 
|     public interface ICheckOrderResultService : IService<Dt_CheckOrderResult> | 
|     { | 
|         /// <summary> | 
|         /// 提交质检结果 | 
|         /// </summary> | 
|         /// <param name="checkOrderId">质检单主键</param> | 
|         /// <param name="checkResult">质检结果对象</param> | 
|         /// <returns></returns> | 
|         WebResponseContent CommitCheckResult(int checkOrderId, Dt_CheckOrderResult checkResult); | 
|     } | 
| } |