26 lines
581 B
C#
26 lines
581 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);
|
|
|
|
List<PlantFactorySite> GetFactorySite(string site_code);
|
|
|
|
}
|
|
}
|