24 lines
589 B
C#
24 lines
589 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 IPlantFactorySiteService : IBaseService<PlantFactorySite>
|
|
{
|
|
PagedInfo<PlantFactorySiteDto> GetList(PlantFactorySiteQueryDto parm);
|
|
|
|
PlantFactorySite GetInfo(int SiteId);
|
|
|
|
PlantFactorySite AddPlantFactorySite(PlantFactorySite parm);
|
|
|
|
int UpdatePlantFactorySite(PlantFactorySite parm);
|
|
|
|
}
|
|
}
|