26 lines
733 B
C#
26 lines
733 B
C#
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);
|
|
List<BaseWorkStationDto> GetList_Drop_down(int id);
|
|
BaseWorkStation GetInfo(int Id);
|
|
|
|
BaseWorkStation AddBaseWorkStation(BaseWorkStation parm, int[] BindedWorkStationArray);
|
|
|
|
int UpdateBaseWorkStation(BaseWorkStation parm, int[] BindedWorkStationArray);
|
|
|
|
void DeleteHandle(int[] idsArr);
|
|
|
|
}
|
|
}
|