24 lines
516 B
C#
24 lines
516 B
C#
|
|
using MDM.Model;
|
|
using MDM.Model.Plant;
|
|
using MDM.Model.Plant.Dto;
|
|
using MDM.Service;
|
|
|
|
namespace MDM.Services.IPlantService
|
|
{
|
|
/// <summary>
|
|
/// 车间service接口
|
|
/// </summary>
|
|
public interface IPlantWorkshopService : IBaseService<PlantWorkshop>
|
|
{
|
|
PagedInfo<PlantWorkshopDto> GetList(PlantWorkshopQueryDto parm);
|
|
|
|
PlantWorkshop GetInfo(int WorkshopId);
|
|
|
|
PlantWorkshop AddPlantWorkshop(PlantWorkshop parm);
|
|
|
|
int UpdatePlantWorkshop(PlantWorkshop parm);
|
|
|
|
}
|
|
}
|