22 lines
549 B
C#
22 lines
549 B
C#
using DOAN.Model.Factory_Model.Dto;
|
|
using DOAN.Model.Factory_Model;
|
|
|
|
namespace DOAN.Service.Factory_Model.IService
|
|
{
|
|
/// <summary>
|
|
/// 产线service接口
|
|
/// </summary>
|
|
public interface IBaseProductionLineService : IBaseService<BaseProductionLine>
|
|
{
|
|
PagedInfo<BaseProductionLineDto> GetList(BaseProductionLineQueryDto parm);
|
|
|
|
BaseProductionLine GetInfo(int Id);
|
|
|
|
|
|
BaseProductionLine AddBaseProductionLine(BaseProductionLine parm);
|
|
int UpdateBaseProductionLine(BaseProductionLine parm);
|
|
|
|
|
|
}
|
|
}
|