24 lines
599 B
C#
24 lines
599 B
C#
using System;
|
|
using DOAN.Model;
|
|
using DOAN.Model.Dto;
|
|
using DOAN.Model.Business;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DOAN.Service.Business.IBusinessService
|
|
{
|
|
/// <summary>
|
|
/// 工站/资源组service接口
|
|
/// </summary>
|
|
public interface IPlantWorkstationService : IBaseService<PlantWorkstation>
|
|
{
|
|
PagedInfo<PlantWorkstationDto> GetList(PlantWorkstationQueryDto parm);
|
|
|
|
PlantWorkstation GetInfo(int WorkstationId);
|
|
|
|
PlantWorkstation AddPlantWorkstation(PlantWorkstation parm);
|
|
|
|
int UpdatePlantWorkstation(PlantWorkstation parm);
|
|
|
|
}
|
|
}
|