20230201_145_upperpc/InSituLaboratory.IService/History/ICavityOtputFeedBackService.cs

18 lines
482 B
C#
Raw Normal View History

2024-05-08 10:01:39 +00:00
using InSituLaboratory.Entities.SysData;
2024-03-26 07:22:15 +00:00
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
{
2024-03-27 09:27:10 +00:00
IEnumerable<cavityoutputfeedback> GetCavityOtputFeedBack(string key, int pageSize, int pageIndex, out int totalCount);
2024-03-26 07:22:15 +00:00
}
}