线边库
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using DOAN.Model;
|
||||
using DOAN.Model.Dto;
|
||||
using DOAN.Model.MES.material.Dto;
|
||||
using DOAN.Model.MES.material;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DOAN.Service.MES.material.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// 北泽线边库库位service接口
|
||||
/// </summary>
|
||||
public interface IMaterialPartsStorageLocationsService : IBaseService<MaterialPartsStorageLocations>
|
||||
{
|
||||
PagedInfo<MaterialPartsStorageLocationsDto> GetList(MaterialPartsStorageLocationsQueryDto parm);
|
||||
|
||||
|
||||
string[] QueryMaterialPartsStorageLocationsLocationCode(string query);
|
||||
|
||||
MaterialPartsStorageLocations GetInfo(int LocationId);
|
||||
|
||||
MaterialPartsStorageLocations AddMaterialPartsStorageLocations(MaterialPartsStorageLocations parm);
|
||||
|
||||
int UpdateMaterialPartsStorageLocations(MaterialPartsStorageLocations parm);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user