You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
678 B
23 lines
678 B
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.ServiceModel;
|
|
|
|
namespace SSWMS.Common
|
|
{
|
|
[ServiceContract]
|
|
public partial interface I_CellService
|
|
{
|
|
[OperationContract]
|
|
bool InitCell(out string sResult);
|
|
|
|
[OperationContract]
|
|
bool UpdateCellFlag(string sWarehouseCode, string sCellFlag,
|
|
int iStartX, int iEndX, int iStartY, int iEndY, int iStartZ, int iEndZ, string sRemark, out string sResult);
|
|
|
|
[OperationContract]
|
|
IList<WH_CELL> GetCellByCellZ(string sWarehouseCode, int iCellZ, int iUserID = 0);
|
|
|
|
[OperationContract]
|
|
DataTable GetCellZ(string sWarehouseCode);
|
|
}
|
|
}
|