服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-07-14 507be0f76a93abfd825ce7fbf192cc098b978f10
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using Rhea.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tiger.Model;
 
namespace Tiger.IBusiness
{
    public interface IPosition : IMESTransaction
    {
        public string UserCode { get; set; }
        public string PostCode { get; set; }
        public MES_FACTORY CurFactory { get; set; }
        public MES_WORKSHOP CurWorkshop { get; set; }
        public MES_LINE CurLine { get; set; }
        public MES_POSITION CurPosition { get; set; }
        public IWorkBatch WorkBatch { get; }
        public MES_WIP_DATA CurWipSN { get; set; }
        public IPosition Init(string id, string apiHost, string userCode, string postCode);
        public void ResetSteps();
 
        //public bool Close(bool needSaveHistoryLog = false);
    }
}