53 lines
1.4 KiB
C#
53 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using WMS.Model.Stock;
|
|
using System.Data;
|
|
|
|
namespace WMS.IData.IStock
|
|
{
|
|
/// <summary>
|
|
/// 移位单
|
|
/// </summary>
|
|
public interface IMoveLoc
|
|
{
|
|
/// <summary>
|
|
/// 获取移位单
|
|
/// </summary>
|
|
/// <returns>移位单</returns>
|
|
DataTable GetMoveLocDT(MoveLocModel model);
|
|
|
|
/// <summary>
|
|
/// 插入移位单信息
|
|
/// </summary>
|
|
/// <param name="MoveLocModel">移位单Model</param>
|
|
/// <returns>移位单编号</returns>
|
|
string InsertMoveLoc(MoveLocModel model);
|
|
|
|
/// <summary>
|
|
/// 修改移位单信息
|
|
/// </summary>
|
|
/// <param name="MoveLocModel">移位单Model</param>
|
|
void UpdateMoveLoc(MoveLocModel model);
|
|
|
|
/// <summary>
|
|
/// 修改移位单Status
|
|
/// </summary>
|
|
/// <param name="MoveLocModel">移位单Model</param>
|
|
void UpdateMoveLocState(MoveLocModel model);
|
|
|
|
/// <summary>
|
|
/// 删除移位单信息
|
|
/// </summary>
|
|
/// <param name="MoveLoc"></param>
|
|
void DeleteMoveLoc(string ID);
|
|
|
|
/// <summary>
|
|
/// 向备份表中添加移位单
|
|
/// </summary>
|
|
/// <param name="moveLocID">移位单编号</param>
|
|
void InsertMoveLocBack(string moveLocID);
|
|
}
|
|
}
|