服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-07-15 2c188371ed9e91ba58c452dbf27150de8eca208a
Tiger.IBusiness/MES/Transaction/IPosition.cs
@@ -10,6 +10,7 @@
{
    public interface IPosition : IMESTransaction
    {
        #region Propertys & Variables
        public string UserCode { get; set; }
        public string PostCode { get; set; }
        public MES_FACTORY CurFactory { get; set; }
@@ -20,7 +21,14 @@
        public MES_WIP_DATA CurWipSN { get; set; }
        public IPosition Init(string id, string apiHost, string userCode, string postCode);
        public void ResetSteps();
        #endregion Propertys & Variables
        //public bool Close(bool needSaveHistoryLog = false);
        #region Functions
        /// <summary>
        /// 获取提交数据的DbClient对象
        /// </summary>
        /// <returns></returns>
        public DbClient GetCommitDB();
        #endregion Functions
    }
}