Files
sy_hx_pbl_backend/DOAN.Service/PBL/IService/IBigScreenService.cs

11 lines
218 B
C#
Raw Normal View History

2024-11-01 17:00:01 +08:00
using DOAN.Model.PBL;
using DOAN.Model.PBL.Dto;
namespace DOAN.Service.PBL.IService;
public interface IBigScreenService : IBaseService<Storagelocation>
{
List<BIgScreenDto> SearchShelfLightInfomation();
2024-11-01 17:25:33 +08:00
2024-11-01 17:00:01 +08:00
}