28 lines
848 B
C#
28 lines
848 B
C#
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);
|
|
|
|
}
|
|
}
|