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.
38 lines
1.5 KiB
38 lines
1.5 KiB
using System.Collections.Generic;
|
|
using System.ServiceModel;
|
|
|
|
namespace SSWMS.Common
|
|
{
|
|
[ServiceContract]
|
|
public partial interface I_ManageService
|
|
{
|
|
[OperationContract]
|
|
bool ManageInCell(STORAGE_MAIN sm, IList<STORAGE_LIST> lStorageListView,
|
|
string sEndCellCode, bool isManual, string sOperator, out string sResult);
|
|
|
|
[OperationContract]
|
|
bool ManageInStation(STORAGE_MAIN sm, IList<STORAGE_LIST> lStorageListView,
|
|
string sOperator, out string sResult);
|
|
|
|
[OperationContract]
|
|
bool ManageOutCell(string sStockBarcode, string sEndDeviceCode, int iGoodsID,
|
|
int iPlanID, int iPlanListID, string sManageType, string sOperator, out string sResult);
|
|
|
|
[OperationContract]
|
|
bool ManageOutCellMulti(List<string> lStockBarcode, string sEndDeviceCode,
|
|
int iPlanID, string sManageType, string sOperator, out string sResult);
|
|
|
|
[OperationContract]
|
|
bool ManageOutStationMulti(Dictionary<int, string> dStorageStockBarcode,
|
|
IList<STORAGE_LIST> lStorageListView, int iPlanID, string sOperator, out string sResult);
|
|
|
|
[OperationContract]
|
|
bool ManageMoveCell(string sStartCellCode, string sEndCellCode, string sOperator, out string sResult);
|
|
|
|
[OperationContract]
|
|
bool RecordInterface(List<int> lRecordID, string sOperator, out string sResult);
|
|
|
|
[OperationContract]
|
|
bool RecordComplete(List<int> lRecordID, string sOperator, out string sResult);
|
|
}
|
|
}
|