You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
937 B
C#
35 lines
937 B
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.BaseInfo.Dtos;
|
|
|
|
namespace DS.WMS.Core.BaseInfo.Interface;
|
|
|
|
public interface IWmsStoreAreaPositionService
|
|
{
|
|
/// <summary>
|
|
/// 列表查询
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
DataResult<List<StoreAreaPositionViewModel>> GetListByPage(PageRequest request);
|
|
|
|
|
|
/// <summary>
|
|
/// 获取信息
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
DataResult<StoreAreaPositionViewModel> GetStoreAreaPositionInfo(string id);
|
|
|
|
/// <summary>
|
|
/// 编辑信息
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
DataResult EditStoreAreaPositionInfo(StoreAreaPositionInput model);
|
|
/// <summary>
|
|
/// 删除库位位置
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
public DataResult DelStoreAreaPosition(string id);
|
|
} |