服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-07-30 98304e3ffd220092103074a5da83bcad2b5c0c7d
Tiger.IBusiness/MES/Transaction/IPosition.cs
@@ -20,6 +20,7 @@
        public IWorkBatch WorkBatch { get; }
        public MES_WIP_DATA CurWipSN { get; set; }
        public MES_WIP_HIS CurWipSNHis { get; set; }
        public Dictionary<string, object> Context { get; set; }
        #endregion Propertys & Variables
        #region Functions
@@ -41,6 +42,20 @@
        /// </summary>
        /// <returns></returns>
        public DbClient GetCommitDB();
        /// <summary>
        /// 获取打印标签模板过程变量值
        /// </summary>
        /// <param name="labelPVs">过程变量列表</param>
        /// <param name="label">标签模板</param>
        /// <returns></returns>
        public BAS_LABEL_TEMP SetLabelVariables(List<BAS_LABEL_PV> labelPVs, BAS_LABEL_TEMP label);
        /// <summary>
        /// 获取打印标签模板过程变量值
        /// </summary>
        /// <param name="labelPVs">过程变量列表</param>
        /// <param name="lv">标签模板变量</param>
        /// <returns></returns>
        public string GetPrintProcessValue(List<BAS_LABEL_PV> labelPVs, BAS_LABEL_VAR lv);
        #endregion Functions
    }
}