2024-03-26 07:22:15 +00:00
|
|
|
|
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
|
|
|
|
|
|
{
|
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
|
|
|
|
}
|
|
|
|
|
|
}
|