提交
This commit is contained in:
28
DOAN.Service/MES/Base/IService/IBaseMaterialBomService.cs
Normal file
28
DOAN.Service/MES/Base/IService/IBaseMaterialBomService.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using DOAN.Model;
|
||||
using DOAN.Model.Dto;
|
||||
using DOAN.Model.MES.base_;
|
||||
using DOAN.Model.MES.base_.Dto;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DOAN.Service.MES.base_.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// service接口
|
||||
/// </summary>
|
||||
public interface IBaseMaterialBomService : IBaseService<BaseMaterialBom>
|
||||
{
|
||||
PagedInfo<BaseMaterialBomDto> GetList(BaseMaterialBomQueryDto parm);
|
||||
|
||||
PagedInfo<BaseMaterialBomDto> GetMonterInvList( BaseMaterialBomQueryDto parm);
|
||||
|
||||
List<BaseMaterialBom> GetSonInvList(BaseMaterialBomQueryDto parm);
|
||||
|
||||
BaseMaterialBom GetInfo(string Id);
|
||||
|
||||
BaseMaterialBom AddBaseMaterialBom(BaseMaterialBom parm);
|
||||
|
||||
int UpdateBaseMaterialBom(BaseMaterialBom parm);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user