36 lines
765 B
C#
36 lines
765 B
C#
|
|
using MDM.Model;
|
|
using MDM.Model.Material;
|
|
using MDM.Model.Material.Dto;
|
|
using MDM.Service;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace MDM.Services.IMaterialService
|
|
{
|
|
/// <summary>
|
|
/// service接口
|
|
/// </summary>
|
|
public interface IMaterialBomService : IBaseService<MaterialBom>
|
|
{
|
|
PagedInfo<MaterialBomDto> GetList(MaterialBomQueryDto parm);
|
|
|
|
PagedInfo<MaterialBomDto> GetMonterInvList(MaterialBomQueryDto parm);
|
|
|
|
List<MaterialBom> GetSonInvList(MaterialBomQueryDto parm);
|
|
|
|
MaterialBom GetInfo(string Id);
|
|
|
|
MaterialBom AddMaterialBom(MaterialBom parm);
|
|
|
|
int UpdateMaterialBom(MaterialBom parm);
|
|
|
|
int ImportData(IFormFile formFile, string name);
|
|
|
|
|
|
byte[] ExportData();
|
|
|
|
|
|
|
|
}
|
|
}
|