提交
This commit is contained in:
25
DOAN.Service/MES/Base/IService/IBaseWorkStationService.cs
Normal file
25
DOAN.Service/MES/Base/IService/IBaseWorkStationService.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user