You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
542 B
C#
21 lines
542 B
C#
using Admin.Core.Model;
|
|
using Admin.Core.Model.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.IService
|
|
{
|
|
/// <summary>
|
|
/// 质检记录
|
|
/// </summary>
|
|
public interface IReportQualityInspectionServices : IBaseServices<ReportQualityInsPection>
|
|
{
|
|
/// <summary>
|
|
/// 判断是否有不合格质检项
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<ReportQualityInsPection> JudgeIsQualified(string barCode);
|
|
|
|
}
|
|
} |