zhuangpei-mesbackend/DOAN.Service/MES/base/IService/IBaseWorkStationService.cs

26 lines
733 B
C#
Raw Normal View History

2024-07-08 16:08:01 +08:00
using System;
using DOAN.Model;
using DOAN.Model.MES.base_.Dto;
using DOAN.Model.MES.base_;
using System.Collections.Generic;
namespace DOAN.Service.MES.base_.IService
{
/// <summary>
/// 工位service接口
/// </summary>
public interface IBaseWorkStationService : IBaseService<BaseWorkStation>
{
PagedInfo<BaseWorkStationDto> GetList(BaseWorkStationQueryDto parm);
2024-07-09 10:37:02 +08:00
List<BaseWorkStationDto> GetList_Drop_down(int id);
2024-07-08 16:08:01 +08:00
BaseWorkStation GetInfo(int Id);
2024-07-09 10:37:02 +08:00
BaseWorkStation AddBaseWorkStation(BaseWorkStation parm, int[] BindedWorkStationArray);
2024-07-08 16:08:01 +08:00
2024-07-09 10:37:02 +08:00
int UpdateBaseWorkStation(BaseWorkStation parm, int[] BindedWorkStationArray);
2024-07-08 16:08:01 +08:00
2024-07-09 11:47:47 +08:00
void DeleteHandle(int[] idsArr);
2024-07-08 16:08:01 +08:00
}
}