20230201_145_upperpc/InSituLaboratory.IService/History/ICavityOtputFeedBackService.cs
2024-03-27 17:27:10 +08:00

18 lines
474 B
C#

using InSituLaboratory.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace InSituLaboratory.IService.History
{
/// <summary>
/// 腔体输出反馈接口
/// </summary>
public interface ICavityOtputFeedBackService : IBaseService
{
IEnumerable<cavityoutputfeedback> GetCavityOtputFeedBack(string key, int pageSize, int pageIndex, out int totalCount);
}
}