gcw_MV9p2JJN 26b07b30d4 process
2026-01-13 16:57:04 +08:00

28 lines
742 B
C#

using MDM.Models.Flow;
using MDM.Models.Session;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MDM.Services.Session.IService
{
public interface ISessionManagerService
{
int StartWorkApply(string ProcessCode, string WorkOrder);
InStationApplyResult InStationApply(string OperationCode, string ProcessCode);
List<string> MiddleProcessFlowDistribution(string operationCode, string ProcessCode);
OutStationApplyResult OutStationApply(string OperationCode, string ProcessCode);
int FinishWorkApply(string ProcessCode, string WorkOrder);
int ReWorkApply(string ProcessCode, string WorkOrder);
}
}