18 lines
449 B
C#
18 lines
449 B
C#
using DOAN.Model.PBL;
|
|
using DOAN.Model.PBL.Dto;
|
|
|
|
namespace DOAN.Service.PBL.IService;
|
|
|
|
public interface IBigScreenService : IBaseService<Storagelocation>
|
|
{
|
|
/// <summary>
|
|
/// 查询料架相关的基本信息
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<BigScreenDto> SearchBigScreenInformation();
|
|
|
|
List<BIgScreenDtoLightPickupDto> SearchShelfLightInfomation();
|
|
|
|
List<BigSreeenDtoFeedingMaterial> SearchfeedingMaterialInfomation();
|
|
}
|