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.
24 lines
721 B
24 lines
721 B
using System.Collections.Generic;
|
|
using System.ServiceModel;
|
|
|
|
namespace SSWMS.Common
|
|
{
|
|
[ServiceContract]
|
|
public partial interface I_PlanService
|
|
{
|
|
[OperationContract]
|
|
PLAN_MAIN GetPlanMain(int iPlanID);
|
|
|
|
[OperationContract]
|
|
IList<PLAN_LIST> GetPlanList(int iPlanID);
|
|
|
|
[OperationContract]
|
|
bool PlanAddOrUpdate(PLAN_MAIN pm, List<PLAN_LIST> lPlanListView, out int iPlanID, out string sResult);
|
|
|
|
[OperationContract]
|
|
bool PlanUpdateStatus(int iPlanID, string sPlanStatus, string sOperator, out string sResult);
|
|
|
|
[OperationContract]
|
|
bool PlanAutoOut(int iPlanID, string sPlanStation, string sPlanLevel, out string sResult);
|
|
}
|
|
}
|