zhuangpei-mesbackend/MDM/Services/Session/IService/ISessionManagerService.cs
2026-01-06 17:31:04 +08:00

21 lines
461 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, string LineCode, string GroupCode);
InStationApplyResult InStationApply(string OperationCode, string ProcessCode);
}
}